:root {
      --blue:        #0f305c;
      --blue-deep:   #0a2244;
      --red:         #a90c1d;
      --red-dark:    #870a17;
      --offwhite:    #f4f5f7;
      --grey-light:  #e9ecef;
      --grey-mid:    #999;
      --black:       #111111;
      --body-text:   #333333;
      --white:       #ffffff;

      --ff-heading:  'Barlow Condensed', sans-serif;
      --ff-body:     'Barlow', sans-serif;

      --radius:      4px;
      --transition:  0.28s ease;
      --shadow-card: 0 4px 28px rgba(0,0,0,0.10);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--ff-body);
      color: var(--body-text);
      background: var(--white);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container {
      width: 92%;
      max-width: 1180px;
      margin: 0 auto;
    }
    .section-label {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: var(--ff-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }
    .section-title span { color: var(--red); }
    .divider {
      width: 48px;
      height: 3px;
      background: var(--red);
      margin: 1rem 0 1.6rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border-radius: var(--radius);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-red {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.7);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
    .btn-outline-blue {
      background: transparent;
      color: var(--blue);
      border-color: var(--blue);
    }
    .btn-outline-blue:hover { background: var(--blue); color: var(--white); }

    /* Fade-in scroll animation */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: transparent;
      transition: background 0.35s ease, box-shadow 0.35s ease;
      padding: 1.1rem 0;
    }
    #navbar.scrolled {
      background: var(--blue-deep);
      box-shadow: 0 2px 18px rgba(0,0,0,0.25);
      padding: 0.75rem 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--ff-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .nav-logo span { color: var(--red); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-links a {
      font-family: var(--ff-heading);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      font-family: var(--ff-heading);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      padding: 0.5rem 1.2rem;
      border-radius: var(--radius);
      transition: background var(--transition);
    }
    .nav-cta:hover { background: var(--red-dark); }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }
    /* Mobile nav */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--blue-deep);
      z-index: 999;
      padding: 5rem 2rem 2rem;
      flex-direction: column;
      gap: 1.6rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--ff-heading);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 1rem;
    }
    .mobile-menu-close {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100vh;
      background: var(--blue);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 0 5rem;
    }
    /* Full-bleed blurred car background */
    #hero-bg {
      position: absolute;
      inset: -30px; /* extra bleed to avoid blur edges */
      background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1800&auto=format&fit=crop&q=80');
      background-size: cover;
      background-position: center 40%;
      filter: blur(7px) brightness(0.22) saturate(0.6);
      transform: scale(1.06); /* prevent blur edge artifact */
      z-index: 0;
    }
    /* Subtle red vignette on the right edge */
    #hero-vignette {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 80% 50%, rgba(169,12,29,0.18) 0%, transparent 60%),
        linear-gradient(to right, rgba(15,48,92,0.55) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }
    /* Geometric accent lines */
    #hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 520px;
      height: 520px;
      border: 60px solid rgba(255,255,255,0.03);
      border-radius: 50%;
      pointer-events: none;
      z-index: 2;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -120px; left: -60px;
      width: 380px;
      height: 380px;
      border: 40px solid rgba(169,12,29,0.12);
      border-radius: 50%;
      pointer-events: none;
      z-index: 2;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 3;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0.4rem 0.9rem;
      border-radius: 2px;
      margin-bottom: 1.4rem;
    }
    .hero-badge i { color: var(--red); font-size: 0.65rem; }
    #hero h1 {
      font-family: var(--ff-heading);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      color: var(--white);
      margin-bottom: 1.2rem;
    }
    #hero h1 .accent { color: var(--red); }
    .hero-sub {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      margin-bottom: 1.6rem;
      max-width: 480px;
    }
    .hero-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      padding: 0.55rem 1rem;
      border-radius: var(--radius);
      margin-bottom: 2.2rem;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .trust-item i { color: var(--red); font-size: 0.9rem; }
    /* Hero image side */
    .hero-visual {
      position: relative;
    }
    .hero-img-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .hero-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.88) contrast(1.05);
    }
    .hero-img-tag {
      position: absolute;
      bottom: 1.2rem;
      left: 1.2rem;
      background: var(--blue-deep);
      border-left: 3px solid var(--red);
      padding: 0.6rem 1rem;
    }
    .hero-img-tag p {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }
    .hero-img-tag strong {
      font-size: 1rem;
      color: var(--white);
      font-weight: 800;
    }
    .hero-stat-cards {
      display: flex;
      gap: 0.8rem;
      margin-top: 1rem;
    }
    .hero-stat {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 1rem;
      text-align: center;
    }
    .hero-stat strong {
      display: block;
      font-family: var(--ff-heading);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat strong span { color: var(--red); }
    .hero-stat small {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      font-family: var(--ff-heading);
      font-weight: 600;
    }

    /* ============================================================
       SOBRE
    ============================================================ */
    #sobre {
      padding: 6rem 0;
      background: var(--offwhite);
    }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .sobre-text .section-title { color: var(--blue); }
    .sobre-text p {
      font-size: 1.02rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 1.3rem;
    }
    .sobre-text p strong { color: var(--blue); }
    .sobre-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.8rem 0 2rem;
    }
    .pillar {
      background: var(--white);
      border-radius: var(--radius);
      border-top: 3px solid var(--red);
      padding: 1.1rem 1.2rem;
      box-shadow: var(--shadow-card);
    }
    .pillar i {
      font-size: 1.2rem;
      color: var(--red);
      margin-bottom: 0.5rem;
    }
    .pillar h4 {
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.3rem;
    }
    .pillar p {
      font-size: 0.85rem;
      color: var(--grey-mid);
      margin: 0;
      line-height: 1.5;
    }
    .sobre-img-col {
      position: relative;
    }
    .sobre-img-main {
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 3/4;
    }
    .sobre-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.9);
    }
    .sobre-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background: var(--blue);
      color: var(--white);
      padding: 1.5rem;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow-card);
    }
    .sobre-badge strong {
      display: block;
      font-family: var(--ff-heading);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .sobre-badge strong span { color: var(--red); }
    .sobre-badge small {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    /* ============================================================
       SERVIÇOS
    ============================================================ */
    #servicos {
      padding: 6rem 0;
      background: var(--white);
    }
    .servicos-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .servicos-header .section-title { color: var(--blue); }
    .servicos-note {
      max-width: 320px;
      font-size: 0.92rem;
      line-height: 1.6;
      color: #666;
      text-align: right;
    }
    .servicos-note strong { color: var(--red); }
    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .servico-card {
      background: var(--offwhite);
      border-radius: var(--radius);
      padding: 2rem 1.6rem;
      border-bottom: 3px solid transparent;
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .servico-card:hover {
      border-bottom-color: var(--red);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    .servico-icon {
      width: 48px;
      height: 48px;
      background: var(--blue);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .servico-icon i { color: var(--white); font-size: 1.1rem; }
    .servico-card h3 {
      font-family: var(--ff-heading);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.6rem;
    }
    .servico-card p {
      font-size: 0.9rem;
      line-height: 1.65;
      color: #666;
    }
    .servicos-cta-band {
      margin-top: 3rem;
      background: var(--blue);
      border-radius: var(--radius);
      padding: 2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .servicos-cta-band p {
      font-family: var(--ff-heading);
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--white);
      max-width: 560px;
      line-height: 1.3;
    }
    .servicos-cta-band p span { color: var(--red); }

    /* ============================================================
       GALERIA
    ============================================================ */
    #galeria {
      padding: 6rem 0;
      background: var(--offwhite);
    }
    #galeria .section-title { color: var(--blue); }
    .galeria-header { margin-bottom: 2.5rem; }
    .gallery-track-wrap {
      position: relative;
      overflow: hidden;
    }
    .gallery-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .gallery-slide {
      flex: 0 0 calc(33.333% - 0.67rem);
      cursor: pointer;
      overflow: hidden;
      border-radius: var(--radius);
      aspect-ratio: 4/3;
      position: relative;
    }
    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease, filter 0.4s ease;
      filter: brightness(0.85);
    }
    .gallery-slide:hover img {
      transform: scale(1.04);
      filter: brightness(1);
    }
    .gallery-slide-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(15,48,92,0.85));
      padding: 1.5rem 1rem 0.8rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-slide:hover .gallery-slide-overlay { opacity: 1; }
    .gallery-slide-overlay span {
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
    }
    .gallery-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
    .gallery-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--blue);
      background: transparent;
      color: var(--blue);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), color var(--transition);
    }
    .gallery-btn:hover { background: var(--blue); color: var(--white); }
    .gallery-dots {
      display: flex;
      gap: 0.5rem;
    }
    .gallery-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--grey-light);
      border: 2px solid var(--grey-mid);
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition);
    }
    .gallery-dot.active {
      background: var(--red);
      border-color: var(--red);
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    #lightbox.open { display: flex; }
    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
    }
    .lightbox-inner img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius);
    }
    .lightbox-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
      opacity: 0.8;
      transition: opacity var(--transition);
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-caption {
      text-align: center;
      margin-top: 0.8rem;
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    /* ============================================================
       LOCALIZAÇÃO
    ============================================================ */
    #localizacao {
      padding: 6rem 0;
      background: var(--white);
    }
    #localizacao .section-title { color: var(--blue); }
    .localizacao-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    .loc-info h3 {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
      margin-top: 1.5rem;
    }
    .loc-info h3:first-child { margin-top: 0; }
    .loc-info p {
      font-size: 0.98rem;
      line-height: 1.6;
      color: var(--body-text);
    }
    .loc-info a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--blue);
      transition: color var(--transition);
    }
    .loc-info a:hover { color: var(--red); }
    .loc-contact-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 0.4rem;
    }
    .loc-contact-row i { color: var(--red); font-size: 0.9rem; width: 1rem; }
    .loc-hours {
      margin-top: 1.5rem;
      background: var(--offwhite);
      border-radius: var(--radius);
      padding: 1.2rem 1.4rem;
      border-left: 3px solid var(--red);
    }
    .loc-hours h4 {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.6rem;
    }
    .loc-hours p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.7;
    }
    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      aspect-ratio: 16/10;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ============================================================
       CONTATO / CTA FINAL
    ============================================================ */
    #contato {
      padding: 6rem 0;
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }
    #contato::before {
      content: '';
      position: absolute;
      top: -100px; right: -80px;
      width: 400px;
      height: 400px;
      border: 50px solid rgba(255,255,255,0.03);
      border-radius: 50%;
      pointer-events: none;
    }
    .contato-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .contato-left .section-title {
      color: var(--white);
      margin-bottom: 1rem;
    }
    .contato-left p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.7);
      margin-bottom: 2rem;
    }
    .contato-perks {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-bottom: 2.5rem;
    }
    .perk {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-family: var(--ff-heading);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .perk i { color: var(--red); font-size: 0.9rem; }
    .contato-ctas {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contato-ctas .btn { justify-content: center; font-size: 1.05rem; padding: 1rem 2rem; }
    /* Form */
    .contato-form {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 2rem;
    }
    .contato-form h3 {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .form-group {
      margin-bottom: 1.1rem;
    }
    .form-group label {
      display: block;
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.4rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      font-family: var(--ff-body);
      font-size: 0.95rem;
      color: var(--white);
      outline: none;
      transition: border-color var(--transition);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(255,255,255,0.45);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select option { background: var(--blue-deep); color: var(--white); }
    .form-submit {
      width: 100%;
      margin-top: 0.5rem;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--blue-deep);
      padding: 2.5rem 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-logo {
      font-family: var(--ff-heading);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .footer-logo span { color: var(--red); }
    .footer-links {
      display: flex;
      gap: 1.5rem;
    }
    .footer-links a {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--white); }
    .footer-socials {
      display: flex;
      gap: 0.75rem;
    }
    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .social-icon:hover { background: var(--red); color: var(--white); border-color: var(--red); }
    .footer-copy {
      width: 100%;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 1.5rem;
      margin-top: 0.5rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      font-family: var(--ff-heading);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ============================================================
       FLOATING WHATSAPP
    ============================================================ */
    #whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 900;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      color: var(--white);
      font-size: 1.5rem;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    #whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.65);
    }

    /* ============================================================
       SCROLL TO TOP
    ============================================================ */
    #scroll-top {
      position: fixed;
      bottom: 5.5rem;
      right: 2rem;
      z-index: 900;
      width: 40px;
      height: 40px;
      background: var(--blue);
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.85rem;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
    }
    #scroll-top:hover { background: var(--red); transform: translateY(-2px); }
    #scroll-top.show { display: flex; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-img-col { display: none; }
      .servicos-grid { grid-template-columns: repeat(2, 1fr); }
      .localizacao-grid { grid-template-columns: 1fr; }
      .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
      .servicos-header { flex-direction: column; align-items: flex-start; }
      .servicos-note { text-align: left; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .servicos-grid { grid-template-columns: 1fr; }
      .sobre-pillars { grid-template-columns: 1fr; }
      .gallery-slide { flex: 0 0 calc(100% - 0rem); }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-socials { justify-content: center; }
      .servicos-cta-band { flex-direction: column; text-align: center; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
    }
    @media (max-width: 480px) {
      .hero-stat-cards { display: none; }
      .hero-trust { flex-direction: column; align-items: flex-start; }
    }