@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 300 400;
  font-display: optional;
  src: url('../fonts/exo2-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 300 400;
  font-display: optional;
  src: url('../fonts/exo2-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('../fonts/poppins-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('../fonts/poppins-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/poppins-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/poppins-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/poppins-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-primary: #1d2e86; /* Azul Escuro */
  --color-secondary: #77ab45; /* Verde Claro */
  --color-accent: #727171; /* Cinza */
  
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-light: #f4f4f4;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300; /* Light */
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-weight: 700; font-size: 2.5rem; }
h2 { font-weight: 600; font-size: 2rem; }
h3 { font-weight: 500; font-size: 1.5rem; }

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

.eyebrow {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: #5d8e32; /* Slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(119, 171, 69, 0.3);
  color: #fff;
}

.btn-primary {
  background-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: #152263; /* Slightly darker blue */
  box-shadow: 0 10px 15px -3px rgba(29, 46, 134, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 34px;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(29, 46, 134, 0.3);
}

.btn-outline-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 14px 34px;
}

.btn-outline-secondary:hover {
  background-color: var(--color-secondary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(119, 171, 69, 0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #fff;
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.btn-primary .btn-icon {
  color: #fff;
}

.btn-outline .btn-icon {
  color: var(--color-primary);
}

.btn-outline:hover .btn-icon {
  color: #fff;
}

.btn-outline-secondary .btn-icon {
  color: var(--color-secondary);
}

.btn-outline-secondary:hover .btn-icon {
  color: #fff;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .outros-servicos-grid, .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) {
  .outros-servicos-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* Align "Saiba mais" buttons at the bottom of Outros Serviços cards */
.outros-servicos-grid a.clean-card {
  display: flex;
  flex-direction: column;
}

.outros-servicos-grid .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Align "Saiba mais" buttons at the bottom of Services cards (home, serviços) */
.services-grid a.clean-card {
  display: flex;
  flex-direction: column;
}

.services-grid a.clean-card > .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #327a16;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}


/* Styles from Footer.astro */
.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding-top: 4rem;
    font-size: 0.95rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .footer-logo-wrapper {
    margin-bottom: 1.5rem;
  }

  .footer-logo-img {
    max-height: 80px;
    width: auto;
    display: block;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background-color: var(--color-secondary);
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--color-secondary);
  }

  .schedule-item {
    margin-bottom: 0.5rem;
  }

  .btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    border: none;
    transition: background-color 0.3s ease;
  }

  .btn-whatsapp-small:hover {
    background-color: #327a16;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
  }

  .contact-item .icon {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .contact-item p {
    margin: 0;
    line-height: 1.5;
  }

  .footer-contact-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
    padding: 6px 0;
  }

  .footer-contact-link:hover {
    color: var(--color-secondary);
  }

  .footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .developed-by {
    color: #ffffff;
    display: flex;
    align-items: center;
  }

  .cantor-logo {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: opacity 0.3s ease;
  }

  .cantor-logo:hover {
    opacity: 0.8;
  }

  @media (max-width: 992px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
    }
    .bottom-bar {
      flex-direction: column;
      text-align: center;
    }
  }


/* Styles from Header.astro */
.header {
    background-color: var(--color-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px; /* Aumentado em 4px para dar 2px de respiro top/bottom */
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .header-logo-img {
    height: 214px;
    width: auto;
    aspect-ratio: 1 / 1;
    display: block;
  }

  .main-nav > ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
  }

  .main-nav a:hover,
  .main-nav a.active,
  .main-nav .dropdown-toggle.active {
    color: var(--color-secondary);
  }

  .main-nav a:hover::after,
  .main-nav a.active::after,
  .main-nav .dropdown-toggle.active::after {
    width: 100%;
  }

  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 25px;
    left: 0;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.02);
    min-width: 260px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 12px;
    z-index: 100;
    gap: 0;
    list-style: none;
  }
  
  /* Invisible bridge to keep hover active across the margin gap */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
  }
  
  .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    width: 100%;
  }
  
  .dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    color: #4b5563;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .dropdown-menu a::after {
    display: none; /* hide the underline from main nav */
  }
  
  .dropdown-menu a:hover:not(.active) {
    background: #f8fafc;
    color: var(--color-primary);
    transform: translateX(4px);
  }

  .dropdown-menu a.active, .mobile-dropdown-menu a.active {
    background: var(--color-primary);
    color: #ffffff;
  }

  .btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-secondary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .btn-whatsapp-header:hover {
    background-color: #327a16;
  }

  .hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
  }

  .mobile-menu {
    display: none;
  }

  @media (max-width: 768px) {
    .header-logo-img {
      height: 137px;
    }
    
    .desktop-nav {
      display: none;
    }
    
    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .desktop-cta .btn-whatsapp-header {
      padding: 0.4rem 0.6rem;
      font-size: 0.75rem;
    }
    
    .desktop-cta .btn-whatsapp-header svg {
      width: 16px;
      height: 16px;
    }
    
    .hamburger-btn {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu {
      display: block;
      position: absolute;
      top: 84px; /* Height of header */
      left: 0;
      right: 0;
      background-color: var(--color-bg);
      padding: 1.5rem 20px;
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 99;
    }

    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding: 0;
    }

    .mobile-nav a {
      font-family: var(--font-heading);
      font-weight: 500;
      color: var(--color-text);
      font-size: 1.2rem;
      display: block;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active,
    .mobile-dropdown-toggle:hover,
    .mobile-dropdown-toggle.active {
      color: var(--color-secondary);
    }

    .mobile-dropdown-menu {
      display: none;
      flex-direction: column;
      padding-left: 1.5rem;
      margin-top: 0.5rem;
      gap: 0.5rem;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
      display: flex;
    }
    
    .mobile-dropdown-toggle {
      font-family: var(--font-heading);
      font-weight: 500;
      color: var(--color-text);
      font-size: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .mobile-dropdown.active .mobile-dropdown-toggle svg {
      transform: rotate(180deg);
    }
    
    .mobile-dropdown-menu a {
      font-size: 1rem;
      color: #4b5563;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      display: block;
    }

    .mobile-cta-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }
  }


/* Styles from Location.astro */
/* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .contact-map {
      height: 300px;
    }
    .contact-section .container {
      padding: 0 15px;
    }
  }


/* Styles from Numbers.astro */
@media (max-width: 768px) {
    .numbers-inner {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
      justify-content: center !important;
    }
  }


/* Styles from ReviewsCarousel.astro */
.reviews-section {
    background-color: #f9fafb;
    padding: 6rem 0;
    overflow: hidden;
  }

  .text-center {
    text-align: center;
  }

  .mt-4 {
    margin-top: 3rem;
  }

  .reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary, #1d2e86);
  }

  .google-badge {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* MARQUEE CONTAINER JS-DRIVEN */
  .marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 1rem 0 2rem;
    cursor: grab;
    /* Optional: add masks to fade out edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    
    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .marquee-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  .marquee-container:active {
    cursor: grabbing;
  }

  .marquee-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    /* CSS animation removed to use JS scrollLeft */
  }

  /* REVIEW CARD */
  .review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #f3f4f6;
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }

  .review-meta {
    display: flex;
    flex-direction: column;
  }

  .review-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05rem;
    text-align: left;
  }

  .review-date {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: left;
  }

  .review-stars {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: left;
  }

  .review-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
    text-align: left;
  }

  .google-logo-small {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }


/* Styles from ServicesGrid.astro */
/* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
    padding: 5rem 0;
  }
  
  .section-header {
    margin-bottom: 4rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }


/* Styles from Layout.astro */
main {
		min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
	}


/* Styles from contato.astro */
.contato-hero {
    padding: 4rem 0;
    background-color: var(--color-primary);
    text-align: center;
  }

  .contato-hero .eyebrow {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .contato-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
  }

  .hero-paragraph {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Shared Section Styles */
  .section-eyebrow {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .section-title {
    color: var(--color-primary);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
  }

  /* Canais Section */
  .canais-section {
    padding: 5rem 0;
    background-color: #f8fafc;
  }

  .canais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .canal-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid #f1f5f9;
  }

  .canal-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .canal-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
  }

  .whatsapp-icon {
    background-color: var(--color-primary);
  }
  
  .phone-icon {
    background-color: var(--color-secondary);
  }

  .email-icon {
    background-color: var(--color-primary);
  }

  .canal-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .canal-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .btn-canal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-canal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  }

  .btn-whatsapp {
    background-color: var(--color-primary);
    color: #ffffff;
  }

  .btn-phone {
    background-color: var(--color-secondary);
    color: #ffffff;
    border: none;
  }

  .btn-email {
    background-color: var(--color-primary);
    color: #ffffff;
  }

  .canal-footer {
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #1f2937;
    font-size: 1.15rem;
    font-weight: 700;
  }

  /* Localização Section */
  .localizacao-section {
    padding: 4rem 0 6rem;
    background-color: #ffffff;
  }

  .loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .loc-mapa {
    width: 100%;
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    background: #e2e8f0;
  }

  .loc-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .loc-detalhe {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .loc-detalhe svg {
    color: var(--color-secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  .loc-detalhe strong {
    display: block;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .loc-detalhe p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .endereco-link {
    color: #64748b;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
  }

  .endereco-link:hover {
    color: var(--color-primary);
  }

  .atendimento-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--color-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .loc-botoes {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .btn-rota {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
  }

  .btn-rota:hover {
    opacity: 0.9;
    color: #fff;
  }

  .btn-rota img {
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .waze-btn {
    background-color: var(--color-primary);
  }

  .maps-btn {
    background-color: var(--color-secondary);
  }

  /* Servicos */
  .servicos-section {
    padding: 5rem 0;
    background-color: #f8fafc;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .servico-card {
    background: #fff;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
  }

  .servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
  }

  .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

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

  .servico-card:hover .card-image img {
    transform: scale(1.05);
  }

  .card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card-content h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .read-more {
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }

  .servico-card .read-more::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .read-more:hover {
    color: #327a16;
  }

  @media (max-width: 992px) {
    .canais-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .loc-grid {
      grid-template-columns: 1fr;
    }
    .loc-mapa {
      order: 2;
    }
    .loc-info {
      order: 1;
      margin-bottom: 2rem;
    }
    .servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .contato-hero h1 {
      font-size: 2.2rem;
    }
    .section-title {
      font-size: 2.2rem;
    }
    .canais-grid {
      grid-template-columns: 1fr;
    }
    .servicos-grid {
      grid-template-columns: 1fr;
    }
    .loc-botoes {
      flex-direction: column;
    }
  }


/* Styles from index.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }


  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }

    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-map {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid {
      grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }


/* Styles from vistoria-cautelar.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .outros-servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .outros-servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid, .outros-servicos-grid {
      grid-template-columns: 1fr;
    }
    
    .numbers-inner {
      justify-content: center !important;
    }
    
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .stepper::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 15%;
      right: 15%;
      height: 2px;
      background-color: #e5e7eb;
      z-index: 1;
    }
  }

  .diferenciais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
  }
  .diferenciais-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }
  .diff-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  .diff-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
  }
  .diff-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .diff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .diff-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  }
  .diff-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diff-badge strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .diff-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  @media (max-width: 992px) {
    .diferenciais-container {
      grid-template-columns: 1fr;
    }
    .diff-image-wrapper {
      min-height: 500px;
      margin-top: 2rem;
    }
    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    .contact-map {
      order: -1;
      min-height: 400px;
    }
  }
  @media (max-width: 600px) {
    .diferenciais-cards-grid {
      grid-template-columns: 1fr;
    }
    .diff-badge {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      flex-direction: column;
      text-align: center;
    }
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from vistoria-de-infracao-de-transito.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .outros-servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .outros-servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid, .outros-servicos-grid {
      grid-template-columns: 1fr;
    }
    
    .numbers-inner {
      justify-content: center !important;
    }
    
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .stepper::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 15%;
      right: 15%;
      height: 2px;
      background-color: #e5e7eb;
      z-index: 1;
    }
  }

  .diferenciais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
  }
  .diferenciais-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }
  .diff-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  .diff-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
  }
  .diff-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .diff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .diff-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  }
  .diff-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diff-badge strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .diff-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  @media (max-width: 992px) {
    .diferenciais-container {
      grid-template-columns: 1fr;
    }
    .diff-image-wrapper {
      min-height: 500px;
      margin-top: 2rem;
    }
    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    .contact-map {
      order: -1;
      min-height: 400px;
    }
  }
  @media (max-width: 600px) {
    .diferenciais-cards-grid {
      grid-template-columns: 1fr;
    }
    .diff-badge {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      flex-direction: column;
      text-align: center;
    }
  }
  @media (min-width: 768px) {
    .analisado-grid-2 {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .outros-servicos-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from vistoria-de-pintura.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .outros-servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .outros-servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid, .outros-servicos-grid {
      grid-template-columns: 1fr;
    }
    
    .numbers-inner {
      justify-content: center !important;
    }
    
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .stepper::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 10%;
      right: 10%;
      height: 2px;
      background-color: #e5e7eb;
      z-index: 1;
    }
  }

  .diferenciais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
  }
  .diferenciais-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }
  .diff-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  .diff-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
  }
  .diff-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .diff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .diff-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  }
  .diff-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diff-badge strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .diff-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  @media (max-width: 992px) {
    .diferenciais-container {
      grid-template-columns: 1fr;
    }
    .diff-image-wrapper {
      min-height: 500px;
      margin-top: 2rem;
    }
    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    .contact-map {
      order: -1;
      min-height: 400px;
    }
  }
  @media (max-width: 600px) {
    .diferenciais-cards-grid {
      grid-template-columns: 1fr;
    }
    .diff-badge {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      flex-direction: column;
      text-align: center;
    }
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from vistoria-de-transferencia.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .outros-servicos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .outros-servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid, .outros-servicos-grid {
      grid-template-columns: 1fr;
    }
    
    .numbers-inner {
      justify-content: center !important;
    }
    
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .stepper::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 15%;
      right: 15%;
      height: 2px;
      background-color: #e5e7eb;
      z-index: 1;
    }
  }

  .diferenciais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
  }
  .diferenciais-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }
  .diff-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  .diff-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
  }
  .diff-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .diff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .diff-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  }
  .diff-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diff-badge strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .diff-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  @media (max-width: 992px) {
    .diferenciais-container {
      grid-template-columns: 1fr;
    }
    .diff-image-wrapper {
      min-height: 500px;
      margin-top: 2rem;
    }
    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    .contact-map {
      order: -1;
      min-height: 400px;
    }
  }
  @media (max-width: 600px) {
    .diferenciais-cards-grid {
      grid-template-columns: 1fr;
    }
    .diff-badge {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      flex-direction: column;
      text-align: center;
    }
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from vistoria-em-transito.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  @media (max-width: 992px) {
    .floating-badge-hero {
      left: 50% !important;
      transform: translateX(-50%);
      width: 90% !important;
      bottom: -20px !important;
    }
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .map-buttons-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    width: 100%;
  }
  .map-btn {
    flex: 1;
    justify-content: center;
    color: #fff;
    border: none;
    padding: 0.8rem 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }
  .waze-btn {
    background-color: var(--color-primary);
  }
  .google-btn {
    background-color: var(--color-secondary);
  }

  @media (max-width: 600px) {
    .map-buttons-container {
      flex-direction: column;
    }
  }

  @media (min-width: 768px) {
    .analisado-grid-2 {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .outros-servicos-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .outros-servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid, .outros-servicos-grid {
      grid-template-columns: 1fr;
    }
    
    .numbers-inner {
      justify-content: center !important;
    }
    
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .stepper::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 15%;
      right: 15%;
      height: 2px;
      background-color: #e5e7eb;
      z-index: 1;
    }
  }

  .diferenciais-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
  }
  .diferenciais-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .diff-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }
  .diff-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  .diff-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
  }
  .diff-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .diff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .diff-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  }
  .diff-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .diff-badge strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .diff-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  @media (max-width: 992px) {
    .diferenciais-container {
      grid-template-columns: 1fr;
    }
    .diff-image-wrapper {
      min-height: 500px;
      margin-top: 2rem;
    }
    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr;
    }
    .contact-map {
      order: -1;
      min-height: 400px;
    }
  }
  @media (max-width: 600px) {
    .diferenciais-cards-grid {
      grid-template-columns: 1fr;
    }
    .diff-badge {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      flex-direction: column;
      text-align: center;
    }
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from servicos.astro */
/* Base Section Styles */
  section {
    padding: 6rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 3rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
  }

  /* HERO */
  .hero {
    background: #f8faff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Ajuste no mobile para o badge flutuante não sumir da tela */
  
  
  @media (max-width: 992px) {
    
  }

  .hero-img-servicos {
    height: 600px;
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .image-placeholder {
    background-color: #f3f4f6;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  /* NUMBERS SECTION */
  .numbers {
    background-color: var(--color-primary);
    padding: 2.5rem 0;
  }
  
  .numbers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
  }

  .number-item {
    display: flex;
    flex-direction: column;
  }

  .number-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-secondary);
  }

  .number-desc {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  /* SERVICES - CLEAN STYLE */
  .services {
    background-color: #ffffff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .clean-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .with-border {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
  }

  .card-image-placeholder {
    height: 200px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .card-content {
    padding: 2rem;
  }
  
  .service-icon-clean {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(29, 46, 134, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clean-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }
  
  .clean-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .service-link {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* FLOATING CTA */
  .floating-cta-section {
    padding: 2rem 0 6rem;
  }
  
  .floating-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .expandable-section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal na expansão */
  }

  .expandable-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    will-change: max-width, border-radius, width;
  }
  
  .image-placeholder-large {
    background-color: #cbd5e1;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  
  .floating-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .floating-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .floating-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  /* FEATURES SPLIT */
  .features-split {
    background-color: #ffffff;
    padding-top: 2rem; /* Reduzindo o espaçamento superior */
  }
  
  .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* Importante para o sticky e margins funcionarem bem */
  }
  
  .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .features-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 3rem;
  }
  
  .clean-features-list {
    list-style: none;
  }
  
  .clean-features-list li {
    display: flex;
    gap: 1.5rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
  }
  
  .clean-features-list li:hover {
    background: #f3f4f6;
  }
  
  .list-icon {
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .list-text strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .list-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
  }
  
  .image-placeholder-vertical {
    background-color: #e2e8f0;
    height: 700px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
  }

  @media (min-width: 993px) {
    .split-image {
      position: sticky;
      top: 120px;
      margin-top: 3.5rem; /* Empurra a imagem para baixo para alinhar com o h2 */
    }
  }

  /* SOCIAL PROOF */
  .social-proof {
    background-color: #f9fafb;
    padding: 4rem 0;
  }

  .google-reviews {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .reviews-count {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
  }

  /* FAQ */
  .faq {
    background-color: #ffffff;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item:hover {
    background: #f3f4f6;
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    list-style: none; /* hide default marker */
    width: 100%;
    padding: 1.15rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
  }

  .faq-content p {
    margin: 0;
    padding-top: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .hero-container, .split-container, .faq-container {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
      position: relative;
      right: 0;
      top: 0;
      transform: none;
      width: 100%;
      max-width: 100%;
      border-radius: 0 0 16px 16px;
    }
    .image-placeholder-large {
      height: 300px;
      border-radius: 16px 16px 0 0;
    }
    .floating-wrapper {
      display: flex;
      flex-direction: column;
    }

    .contact-grid, .cta-final-grid {
      grid-template-columns: 1fr !important;
    }
    
    .contact-map {
      order: -1 !important;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid, .faq-grid {
      grid-template-columns: 1fr;
    }
    .hero-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .numbers-inner {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
    .number-item {
      flex-direction: column !important;
      text-align: center !important;
      justify-content: center !important;
    }
    
    
    .mobile-wrap-actions {
      flex-wrap: wrap !important;
    }
    
    .contact-map {
      height: 600px !important;
    }
    
    .hero-img-servicos {
      height: 400px;
    }
    .contact-section .container {
      padding: 0 15px;
    }
    .hero h1 { font-size: 2.5rem; }
    .split-content h2 { font-size: 2rem; }
    .section-header h2 { font-size: 2.2rem; }
  }
  /* CONTACT SECTION */
  .contact-section {
    padding: 6rem 0;
    background-color: #f9fafb;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .contact-map {
    width: 100%;
    height: 480px;
    min-width: 0;
    align-self: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: #4b5563;
  }

  .contact-details li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .contact-details li a:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    background: var(--color-secondary);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  a.clean-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }


/* Styles from sobre.astro */
.sobre-hero {
    padding: 4rem 0;
    background-color: var(--color-primary);
    text-align: left;
  }

  .sobre-hero .eyebrow {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .sobre-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
  }

  .sobre-hero .hero-paragraph {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
    text-align: left;
  }

  /* Historia Section */
  .historia-section {
    padding: 6rem 0;
    background-color: #fff;
  }

  .historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .historia-imagem-sticky {
    position: sticky;
    top: 100px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.15);
    height: 480px;
  }

  .historia-imagem-sticky img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .historia-text h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .historia-text h3 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .historia-text p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .historia-galeria {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .foto-principal {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  }

  .foto-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .foto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .foto-item {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  }

  .foto-item--wide {
    grid-column: 1 / -1;
    height: 200px;
  }

  .foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .foto-item:hover img {
    transform: scale(1.05);
  }

  .foto-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.75rem 0.75rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  @media (max-width: 992px) {
    .historia-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  @media (max-width: 768px) {
    .sobre-hero h1 {
      font-size: 2.2rem;
    }

    .foto-principal {
      height: 250px;
    }

    .foto-item {
      height: 150px;
    }

    
  }

/* FORCED 4 COLUMNS FOR OUTROS SERVICOS */
.outros-servicos-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}

@media (max-width: 1024px) {
  .outros-servicos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .outros-servicos-grid {
    grid-template-columns: 1fr !important;
  }
}
