@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hover-zoom-image {
  transition: transform 0.5s ease;
}
.hover-zoom-image:hover {
  transform: scale(1.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}
.hover-lift:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.hover-zoom {
  overflow: hidden;
}
.hover-zoom img {
  transition: transform 0.5s ease !important;
}
.hover-zoom:hover img {
  transform: scale(1.1) !important;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

.delay-6 {
  animation-delay: 0.6s !important;
}

.delay-7 {
  animation-delay: 0.7s !important;
}

.delay-8 {
  animation-delay: 0.8s !important;
}

.delay-9 {
  animation-delay: 0.9s !important;
}

.delay-10 {
  animation-delay: 1s !important;
}

.delay-11 {
  animation-delay: 1.1s !important;
}

.delay-12 {
  animation-delay: 1.2s !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #18181b;
  background-color: #fafafa;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.navbar {
  background-color: #18181b;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 640px) {
  .navbar-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .navbar-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.navbar-brand .navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand .navbar-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.navbar-brand .navbar-logo .logo-text .logo-text-accent {
  color: #dc2626;
}
.navbar-brand .navbar-logo .logo-image {
  height: 80px;
  width: auto;
}

.navbar-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 150ms ease-in-out;
}
@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle:hover {
  background-color: #27272a;
}
.navbar-toggle .navbar-toggle-icon-close {
  display: none;
}
.navbar-toggle[aria-expanded=true] .navbar-toggle-icon {
  display: none;
}
.navbar-toggle[aria-expanded=true] .navbar-toggle-icon-close {
  display: block;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
  }
}
.navbar-menu[aria-expanded=true] {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #27272a;
  border-top: 1px solid #3f3f46;
  padding: 1rem;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .navbar-nav {
    flex-direction: row;
  }
}

.navbar-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #d4d4d8;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
@media (min-width: 1024px) {
  .navbar-link {
    display: inline-block;
  }
}
.navbar-link:hover {
  background-color: #27272a;
  color: #ffffff;
}
.navbar-link.is-active {
  background-color: #dc2626;
  color: #ffffff;
}

.navbar-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .navbar-phone {
    display: flex;
  }
}

.navbar-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  transition: color 150ms ease-in-out;
}
.navbar-phone-link:hover {
  color: #dc2626;
}

.navbar-phone-icon {
  color: #dc2626;
  width: 16px;
  height: 16px;
}

.site-footer {
  background-color: #18181b;
  color: #ffffff;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo .footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-logo .footer-logo-text .footer-logo-text-accent {
  color: #dc2626;
}
.footer-logo .footer-logo-image {
  height: 80px;
  width: auto;
}

.footer-description {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-nav,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: #a1a1aa;
  transition: color 150ms ease-in-out;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-services li {
  color: #a1a1aa;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-icon {
  color: #dc2626;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-content {
  color: #a1a1aa;
  flex: 1;
}

.footer-contact-link {
  display: block;
  color: #a1a1aa;
  transition: color 150ms ease-in-out;
}
.footer-contact-link:hover {
  color: #ffffff;
}

.footer-extra-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid #27272a;
  margin-top: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-extra-bar {
    flex-direction: row;
    gap: 0;
    padding: 1rem 0;
  }
}

.footer-socials {
  order: 2;
}
.footer-socials .social-icons {
  display: flex;
  gap: 1rem;
}
.footer-socials .social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #27272a;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.footer-socials .social-icon-link:hover {
  background-color: #dc2626;
  transform: translateY(-3px);
}
.footer-socials .social-icon-link .social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-prr {
  order: 1;
}
.footer-prr .footer-prr-logo {
  height: 50px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-prr .footer-prr-logo:hover {
  opacity: 1;
}

.footer-legal {
  border-top: 1px solid #27272a;
  padding: 1.5rem 0;
}

.footer-legal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #71717a;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-legal-content {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: #71717a;
  transition: color 150ms ease-in-out;
}
.footer-legal-link:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.btn svg {
  width: 20px;
  height: 20px;
}
.btn svg {
  margin-left: 0.5rem;
}
.btn:hover {
  transform: scale(1.05);
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  background-color: #dc2626;
  color: #ffffff;
}
.btn-primary svg {
  width: 20px;
  height: 20px;
}
.btn-primary:hover {
  background-color: #b91c1c;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  background-color: #ffffff;
  color: #18181b;
}
.btn-secondary svg {
  width: 20px;
  height: 20px;
}
.btn-secondary:hover {
  background-color: #f4f4f5;
}

.btn-inverse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  background-color: #ffffff;
  color: #dc2626;
}
.btn-inverse svg {
  width: 20px;
  height: 20px;
}
.btn-inverse:hover {
  background-color: #f4f4f5;
  color: #b91c1c;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline-white svg {
  width: 20px;
  height: 20px;
}
.btn-outline-white:hover {
  background-color: #b91c1c;
}

.icon-arrow-right,
.icon-search,
.icon-phone {
  width: 20px;
  height: 20px;
}

.card-veiculo,
.card-veiculo-usado,
.card-peca {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: block;
}
.card-veiculo.is-visible,
.card-veiculo-usado.is-visible,
.card-peca.is-visible {
  animation: fadeInUp 0.6s ease backwards;
}
.card-veiculo:hover,
.card-veiculo-usado:hover,
.card-peca:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-veiculo-image,
.card-veiculo-usado-image,
.card-peca-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-veiculo:hover .card-image,
.card-veiculo-usado:hover .card-image,
.card-peca:hover .card-image {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.card-badge-novo {
  background-color: #dc2626;
}

.card-badge-destaque {
  background-color: #eab308;
  color: #18181b;
  left: 0.5rem;
  right: auto;
}

.card-veiculo-content,
.card-veiculo-usado-content,
.card-peca-content {
  padding: 1rem;
}

.card-veiculo-title,
.card-veiculo-usado-title,
.card-peca-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card-veiculo-info,
.card-veiculo-usado-info,
.card-peca-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #52525b;
  margin-bottom: 0.75rem;
}

.card-veiculo-estado {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.card-veiculo-usado-preco {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
}

.card-veiculo-usado-preco-consulta {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3f3f46;
}

.card-peca-categoria {
  font-size: 0.75rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-section {
  position: relative;
  background-color: #18181b;
  overflow: hidden;
}
.hero-section.hero-slider-section {
  height: auto;
  min-height: 600px;
}

.hero-main-slider .hero-slide {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero-text {
  max-width: 800px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e4e4e7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-floating-phone {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.hero-floating-phone:hover {
  background-color: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
}

.hero-phone-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.hero-phone-link svg {
  margin-right: 0.5rem;
}

/* Slick Customization */
.hero-main-slider .slick-dots {
  bottom: 2rem;
}
.hero-main-slider .slick-dots li button:before {
  color: #ffffff;
  font-size: 12px;
  opacity: 0.5;
}
.hero-main-slider .slick-dots li.slick-active button:before {
  color: #dc2626;
  opacity: 1;
}
.hero-main-slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-main-slider .slide-arrow:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}
.hero-main-slider .slide-arrow.slick-prev {
  left: 2rem;
}
.hero-main-slider .slide-arrow.slick-next {
  right: 2rem;
}

.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-hero {
    height: 400px;
  }
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .page-hero-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-hero-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.page-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3rem;
  }
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: #e4e4e7;
}

.quick-search-section {
  background-color: #ffffff;
  padding: 2rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-top: -64px;
  position: relative;
  z-index: 10;
}

.quick-search-container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .quick-search-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .quick-search-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.quick-search-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .quick-search-fields {
    flex-direction: row;
  }
}

.quick-search-select,
.quick-search-input {
  padding: 0.75rem 1rem;
  border: 1px solid #d4d4d8;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.quick-search-select:focus,
.quick-search-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.quick-search-input {
  flex: 1;
}

.archive-search-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .archive-search-fields {
    flex-direction: row;
  }
}

.archive-search-input-wrapper {
  flex: 1;
  position: relative;
}

.archive-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #a1a1aa;
}

.archive-search-input {
  width: 100%;
  padding-left: 40px;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: 1px solid #d4d4d8;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.archive-search-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.archive-filters-toggle {
  padding: 0.75rem 1.5rem;
  background-color: #f4f4f5;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms ease-in-out;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .archive-filters-toggle {
    display: none;
  }
}
.archive-filters-toggle:hover {
  background-color: #e4e4e7;
}
.archive-filters-toggle svg {
  margin-right: 0.5rem;
}

.destaques-section {
  padding: 4rem 0;
  background-color: #fafafa;
}

.destaques-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .destaques-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .destaques-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.destaques-header {
  text-align: center;
  margin-bottom: 3rem;
}

.destaques-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .destaques-title {
    font-size: 2.25rem;
  }
}

.destaques-subtitle {
  font-size: 1.25rem;
  color: #52525b;
}

.destaques-category {
  margin-bottom: 3rem;
}
.destaques-category:last-child {
  margin-bottom: 0;
}

.destaques-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.destaques-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
}

.destaques-category-link {
  display: flex;
  align-items: center;
  color: #dc2626;
  transition: color 150ms ease-in-out;
}
.destaques-category-link:hover {
  color: #b91c1c;
}
.destaques-category-link svg {
  margin-left: 0.5rem;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .destaques-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.servicos-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.servicos-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .servicos-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .servicos-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.servicos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.servicos-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .servicos-title {
    font-size: 2.25rem;
  }
}

.servicos-subtitle {
  font-size: 1.25rem;
  color: #52525b;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.servico-item {
  text-align: center;
  transition: transform 0.3s ease;
}
.servico-item:hover {
  transform: translateY(-10px);
}
.servico-item:hover .servico-icon {
  background-color: #dc2626;
}
.servico-item:hover .servico-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

.servico-icon {
  width: 64px;
  height: 64px;
  background-color: #fee2e2;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.servico-icon svg {
  width: 32px;
  height: 32px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.servico-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.servico-description {
  color: #52525b;
}

.servicos-cta {
  text-align: center;
  margin-top: 3rem;
}

.sobre-resumo-section {
  padding: 4rem 0;
  background-color: #fafafa;
}

.sobre-resumo-container {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .sobre-resumo-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sobre-resumo-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sobre-resumo-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .sobre-resumo-title {
    font-size: 2.25rem;
  }
}

.sobre-resumo-text {
  font-size: 1.125rem;
  color: #52525b;
  margin-bottom: 2rem;
}

.sobre-resumo-link {
  display: inline-flex;
  align-items: center;
  color: #dc2626;
  font-weight: 600;
  transition: color 150ms ease-in-out;
}
.sobre-resumo-link:hover {
  color: #b91c1c;
}
.sobre-resumo-link svg {
  margin-left: 0.5rem;
}

.contactos-destaque-section {
  padding: 4rem 0;
  background-color: #18181b;
  color: #ffffff;
}

.contactos-destaque-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .contactos-destaque-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contactos-destaque-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contactos-destaque-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .contactos-destaque-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contactos-destaque-item {
  text-align: center;
}
@media (min-width: 768px) {
  .contactos-destaque-item {
    text-align: left;
  }
}

.contactos-destaque-icon {
  width: 32px;
  height: 32px;
  color: #dc2626;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .contactos-destaque-icon {
    margin-left: 0;
    margin-right: 0;
  }
}

.contactos-destaque-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contactos-destaque-content {
  color: #d4d4d8;
}

.contactos-destaque-link {
  display: block;
  color: #d4d4d8;
  transition: color 150ms ease-in-out;
}
.contactos-destaque-link:hover {
  color: #dc2626;
}

.contactos-destaque-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .contactos-destaque-ctas {
    flex-direction: row;
  }
}

.archive-content {
  padding: 2rem 0;
}

.archive-content-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 640px) {
  .archive-content-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .archive-content-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .archive-content-container {
    flex-direction: row;
  }
}

.archive-sidebar {
  width: 100%;
}
@media (min-width: 1024px) {
  .archive-sidebar {
    width: 300px;
    flex-shrink: 0;
  }
}
@media (max-width: 1023px) {
  .archive-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1000;
    padding: 1.5rem;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
  }
  .archive-sidebar.is-active {
    left: 0;
  }
}

.archive-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .archive-sidebar-header .mobile-filter-close {
    display: none;
  }
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
}

.mobile-filter-close {
  background: none;
  border: none;
  color: #52525b;
  cursor: pointer;
  padding: 0.5rem;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3f3f46;
  margin-bottom: 0.25rem;
}

.filter-select,
.filter-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d4d4d8;
  border-radius: 0.375rem;
  background-color: #ffffff;
  font-size: 0.875rem;
  color: #18181b;
}
.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #dc2626;
}

.filter-checkbox-group {
  margin: 1.5rem 0;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #3f3f46;
  cursor: pointer;
}
.filter-checkbox-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #dc2626;
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.btn-full {
  width: 100%;
}

.archive-main {
  flex: 1;
  min-width: 0;
}

.archive-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.archive-results-count {
  font-size: 0.875rem;
  color: #52525b;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1536px) {
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mobile-filter-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s;
}
@media (min-width: 1024px) {
  .mobile-filter-trigger {
    display: none;
  }
}
.mobile-filter-trigger:active {
  transform: scale(0.95);
}
.mobile-filter-trigger svg {
  width: 20px;
  height: 20px;
}

body.filter-open {
  overflow: hidden;
}

.archive-empty {
  text-align: center;
  padding: 3rem 0;
}

.archive-empty-text {
  color: #52525b;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.archive-filters {
  display: none;
}

.single-content {
  padding: 2rem 0;
}

.single-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .single-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .single-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  color: #dc2626;
  margin-bottom: 1.5rem;
  transition: color 150ms ease-in-out;
}
.single-back-link:hover {
  color: #b91c1c;
}
.single-back-link svg {
  margin-right: 0.5rem;
}

.single-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .single-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.single-image-wrapper {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.single-image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.single-featured-image {
  width: 100%;
  height: 384px;
  object-fit: cover;
}

.single-gallery-wrapper {
  margin-top: 1rem;
}

.single-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.single-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.single-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.single-gallery-item:hover img {
  transform: scale(1.1);
}
.single-gallery-item img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dr-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.dr-lightbox.is-open {
  display: block;
}

.dr-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.dr-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 5vh auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dr-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: #18181b;
}

.dr-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dr-lightbox-open {
  overflow: hidden;
}

.single-info-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.single-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-badge-novo {
  background-color: #dc2626;
  color: #ffffff;
}

.single-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
}

.single-subtitle {
  color: #52525b;
  margin-bottom: 1.5rem;
}

.single-section {
  border-top: 1px solid #e4e4e7;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-section:last-child {
  margin-bottom: 0;
}

.single-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.single-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
}

.single-info-label {
  color: #52525b;
}

.single-info-value {
  font-weight: 600;
}

.single-text {
  color: #52525b;
}

.single-pecas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.single-peca-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: #f4f4f5;
  color: #3f3f46;
  border-radius: 9999px;
  font-size: 0.875rem;
}
.single-peca-badge svg {
  margin-right: 0.25rem;
  color: #15803d;
}

.single-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sobre-section {
  padding: 4rem 0;
}

.sobre-section--white {
  background-color: #ffffff;
}

.sobre-section--zinc {
  background-color: #fafafa;
}

.sobre-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .sobre-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .sobre-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sobre-container--narrow {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1.5rem;
}

.sobre-title--center {
  text-align: center;
  margin-bottom: 3rem;
}

.sobre-prose {
  font-size: 1.125rem;
  color: #52525b;
}
.sobre-prose p {
  margin-bottom: 1rem;
}
.sobre-prose strong {
  color: #18181b;
  font-weight: 700;
}

.sobre-lead {
  font-size: 1.125rem;
  color: #52525b;
}

.sobre-servicos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .sobre-servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sobre-servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sobre-servico {
  text-align: center;
  transition: transform 0.3s ease;
}
.sobre-servico:hover {
  transform: translateY(-8px);
}
.sobre-servico:hover .sobre-servico-icon {
  background-color: #dc2626;
}
.sobre-servico:hover .sobre-servico-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

.sobre-servico-icon {
  width: 64px;
  height: 64px;
  background-color: #fee2e2;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: all 0.3s ease;
}
.sobre-servico-icon svg {
  color: #dc2626;
  transition: transform 0.3s ease;
}

.sobre-servico-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #18181b;
}

.sobre-servico-text {
  color: #52525b;
}

.sobre-center-text {
  text-align: center;
  font-size: 1.125rem;
  color: #52525b;
  margin-top: 3rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-split {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .sobre-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sobre-split--reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .sobre-split--reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
  }
  .sobre-split--reverse .sobre-split-text,
  .sobre-split--reverse .sobre-split-image {
    flex: 1;
  }
}

.sobre-split-icon {
  color: #dc2626;
  margin-bottom: 1rem;
}

.sobre-paragraph {
  color: #52525b;
  margin-bottom: 1rem;
}

.sobre-split-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.sobre-split-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.sobre-split-image:hover .sobre-image {
  transform: scale(1.05);
}

.sobre-image {
  width: 100%;
  height: 384px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sobre-compromisso-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sobre-compromisso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sobre-compromisso-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.sobre-compromisso-item:hover {
  background-color: #fafafa;
  transform: translateX(10px);
}
.sobre-compromisso-item:hover .sobre-check {
  transform: scale(1.2) rotate(10deg);
}

.sobre-check {
  color: #dc2626;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sobre-compromisso-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: #18181b;
}

.sobre-compromisso-text {
  color: #52525b;
}

.cta-final {
  padding: 4rem 0;
  background-color: #dc2626;
  color: #ffffff;
}

.cta-final-container {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.cta-final-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-final-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-final-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-final-buttons {
    flex-direction: row;
  }
}

.contactos-section {
  padding: 4rem 0;
  background-color: #fafafa;
}

.contactos-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .contactos-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contactos-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contactos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contactos-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contactos-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contactos-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contactos-card-icon {
  color: #dc2626;
  margin-bottom: 1rem;
}

.contactos-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #18181b;
}

.contactos-card-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contactos-card-link {
  display: block;
  color: #52525b;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.contactos-card-link:hover {
  color: #dc2626;
}

.contactos-card-text {
  color: #52525b;
}

.contactos-map-link {
  display: inline-flex;
  align-items: center;
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
}
.contactos-map-link:hover {
  color: #b91c1c;
}

.contactos-note {
  margin-top: 2rem;
}

.contactos-note-text {
  font-size: 0.875rem;
  color: #52525b;
}

.contactos-form-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contactos-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #18181b;
}

.contactos-alert {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid;
  font-size: 0.875rem;
}

.contactos-alert--success {
  background-color: #dcfce7;
  border-color: rgba(21, 128, 61, 0.3);
  color: #15803d;
}

.contactos-alert--error {
  background-color: #fee2e2;
  border-color: rgba(220, 38, 38, 0.3);
  color: #dc2626;
}

.contactos-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contactos-form-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contactos-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contactos-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3f3f46;
  margin-bottom: 0.5rem;
}

.contactos-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d4d4d8;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.contactos-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.contactos-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #52525b;
}
.contactos-checkbox input {
  margin-top: 2px;
  accent-color: #dc2626;
}

.contactos-policy-link {
  margin-left: 0.5rem;
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
}
.contactos-policy-link:hover {
  color: #b91c1c;
}

.contactos-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #dc2626;
  color: #ffffff;
  border: 0;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 150ms ease-in-out;
}
.contactos-submit:hover {
  background-color: #b91c1c;
}

.contactos-form-footnote {
  font-size: 0.875rem;
  color: #52525b;
}

.contactos-strong {
  font-weight: 600;
}

.contactos-mt {
  margin-top: 0.5rem;
}

.contactos-map {
  height: 384px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/*# sourceMappingURL=main.css.map */
