*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --verde:        #7DB526;
      --verde-claro:  #9ACA3C;
      --verde-medio:  #5E9018;
      --verde-escuro: #3D6010;

      --grad-verde: linear-gradient(135deg, #9ACA3C 0%, #6BA520 55%, #3D6010 100%);

      /* NOVA BASE PRETA */
      --preto: #0a0a0a;
      --cinza-escuro: #111111;
      --cinza-medio:  #1a1a1a;

      --branco: #ffffff;
      --texto-claro: #d1d5db;
      --texto-medio: #9ca3af;

      /* CARDS MENOS VERDES */
      --grad-card: linear-gradient(160deg, rgba(255,255,255,.03) 0%, rgba(0,0,0,.6) 100%);
      }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--preto);
      color: var(--branco);
      overflow-x: hidden;
    }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(0,0,0,.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(154,202,60,.18);
      padding: 0 5vw; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
    }
    nav .logo img { height: 44px; }
    nav ul { list-style: none; display: flex; gap: 2.2rem; }
    nav ul li a { color: var(--texto-claro); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .2s; }
    nav ul li a:hover { color: var(--verde-claro); }
    nav .cta-nav {
      background: transparent;
      color: #9ACA3C;
      border: 1.5px solid #9ACA3C;
      padding: .55rem 1.5rem;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      cursor: pointer;
      text-decoration: none;
      transition: all .25s ease;
    }
    .cta-nav:hover {
      background: #9ACA3C;
      color: #000;
      transform: translateY(-1px);
    }
    nav .hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--branco); font-size: 1.5rem; }

    /* ══ HERO ══ */
    #hero {
      min-height: 100vh; position: relative;
      display: flex; align-items: center; overflow: hidden;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80') center/cover no-repeat;
      filter: brightness(.28) saturate(1.1); z-index: 0;
      transform: scale(1.05);
      animation: heroZoom 20s ease-in-out infinite alternate;
    }
    @keyframes heroZoom { from { transform:scale(1.05); } to { transform:scale(1.13); } }
    #hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.4) 100%);
  z-index: 1;
}
    .hero-deco {
      position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
      z-index: 1; pointer-events: none;
    }
    .hero-deco::before {
      content: ''; position: absolute; top: -10%; right: -5%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(125,181,38,.16) 0%, transparent 68%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 5vw;
      padding-top: calc(72px + 4rem); /* navbar height + breathing room */
      padding-bottom: 120px;
      animation: fadeUp .9s ease forwards;
    }
    @keyframes fadeUp { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(125,181,38,.14); border: 1px solid rgba(154,202,60,.4);
      color: var(--verde-claro); padding: .38rem 1.1rem; border-radius: 100px;
      font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: 1.6rem;
    }
    #hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.2rem;
    }
    #hero h1 span {
      background: var(--grad-verde);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    #hero p {
      font-size: clamp(.92rem, 1.6vw, 1.12rem); color: var(--texto-claro);
      max-width: 580px; line-height: 1.82; margin-bottom: 2.5rem; font-weight: 300;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    
    .btn-primary {
        background: transparent;
        color: #9ACA3C;
        border: 1.5px solid #9ACA3C;
        padding: .92rem 2.1rem;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        letter-spacing: .03em;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: .6rem;
        transition: all .25s ease;
      }

      /* ÍCONE */
      .btn-primary i {
        color: #9ACA3C;
        transition: .25s;
      }

      /* HOVER PREMIUM */
      .btn-primary:hover {
        background: linear-gradient(135deg, #9ACA3C, #6BA520);
        color: #000;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(154,202,60,.35);
      }

      /* ÍCONE NO HOVER */
      .btn-primary:hover i {
        color: #000;
      }
      .btn-whats {
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255,255,255,.25);
        padding: .92rem 2.1rem;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: .9rem;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: .6rem;
        transition: all .25s ease;
      }

      /* ÍCONE (NORMAL) */
      .btn-whats i {
        color: #25D366;
        font-size: 1.2rem;
        transition: .25s;
      }

      /* HOVER PREMIUM */
      .btn-whats:hover {
        background: transparent;
        color: #2ad168;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(37,211,102,.35);
      }

      /* ÍCONE NO HOVER */
      .btn-whats:hover i {
        color: #2ad168;
      }
    .hero-stats {
      position: absolute;
      bottom: 1.5rem;
      left: 5vw;
      right: 5vw;
      z-index: 2;
      display: flex; gap: 3.5rem; flex-wrap: wrap;
      animation: fadeUp 1s .35s ease both;
    }
    .stat { display: flex; flex-direction: column; }
    .stat strong {
      font-size: 2.4rem; font-weight: 800; line-height: 1;
      background: var(--grad-verde);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat span { font-size: .78rem; color: var(--texto-medio); font-weight: 400; margin-top: .2rem; }

    /* ══ SEÇÕES BASE ══ */
    section { padding: 6rem 5vw; }
    .section-label {
      display: inline-flex; align-items: center; gap: .6rem;
      color: var(--verde-claro); font-size: .7rem; font-weight: 700;
      letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem;
    }
    .section-label::before { content: ''; width: 26px; height: 2px; background: var(--grad-verde); border-radius: 2px; }
    h2 {
      font-size: clamp(1.75rem, 3.8vw, 2.9rem); font-weight: 800;
      line-height: 1.12; margin-bottom: 1rem; letter-spacing: -.02em;
    }
    h2 span {
      background: var(--grad-verde);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ══ SERVIÇOS ══ */
    #servicos { background: #111111; }
    .servicos-intro { max-width: 580px; margin-bottom: 3.5rem; }
    .servicos-intro p { color: var(--texto-claro); line-height: 1.75; font-weight: 300; font-size: .9rem; }
    .servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
    .card-servico {
       background: #1a1a1a;   border: 1px solid rgba(255,255,255,.05);
      border-radius: 18px; overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s; cursor: pointer;
    }
    .card-servico:hover { transform: translateY(-7px); box-shadow: 0 24px 52px rgba(0,0,0,.5); border-color: rgba(154,202,60,.35); }
    .card-servico:hover .card-img img { transform: scale(1.08); }
    .card-img { height: 200px; overflow: hidden; }
    .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
    .card-body { padding: 1.5rem; }
    .card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(125,181,38,.2); color: var(--verde-claro);
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem;
    }
    .card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; }
    .card-body p { font-size: .84rem; color: #cbd5e1; line-height: 1.65; font-weight: 300; }
    .card-link {
      display: inline-flex; align-items: center; gap: .4rem;
      color: var(--verde-claro); font-size: .8rem; font-weight: 600;
      text-decoration: none; margin-top: 1rem; transition: gap .2s;
    }
    .card-link:hover { gap: .7rem; }

    /* ══ POR QUE NÓS ══ */
    #porque { background: #0a0a0a; }
    .porque-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

    /* Stack de imagens */
    .porque-img-stack { position: relative; height: 520px; min-width: 0; }
    .porque-img-stack .img-main {
      width: 78%; height: 420px; border-radius: 18px; object-fit: cover;
      position: absolute; right: 0; top: 0; box-shadow: -8px 8px 48px rgba(0,0,0,.65);
      display: block;
    }
    .porque-img-stack .img-small {
      width: 52%; height: 260px; border-radius: 16px; object-fit: cover;
      position: absolute; left: 0; bottom: 0;
      border: 4px solid #0a0a0a; box-shadow: 8px 8px 36px rgba(0,0,0,.65);
      display: block;
    }
    .badge-anos {
      position: absolute; right: 0; bottom: 90px; z-index: 2;
      background: var(--grad-verde); color: #000;
      border-radius: 14px; padding: 1rem 1.3rem;
      font-family: 'Poppins', sans-serif; font-weight: 900;
      text-align: center; line-height: 1.1; box-shadow: 0 8px 28px rgba(125,181,38,.45);
    }
    .badge-anos .num { font-size: 2.4rem; display: block; font-weight: 800; color: #000; }
    .badge-anos .txt { font-size: .76rem; font-weight: 600; color: #000; }

    /* Texto lado direito */
    .porque-text { min-width: 0; }
    .porque-text p { color: var(--texto-claro); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; font-size: .92rem; }

    /* H2 na seção #porque — sem clip para garantir leitura */
    #porque h2 {
      background: none;
      -webkit-background-clip: unset;
      -webkit-text-fill-color: unset;
      background-clip: unset;
      color: #ffffff;
    }
    #porque h2 span {
      background: var(--grad-verde);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .diferenciais { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
    .diferencial {
      display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.2rem;
      background: rgba(125,181,38,.07); border: 1px solid rgba(154,202,60,.1);
      border-radius: 12px; transition: border-color .25s, background .25s;
    }
    .diferencial:hover { border-color: rgba(154,202,60,.32); background: rgba(125,181,38,.12); }
    .diferencial .icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(125,181,38,.18); border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      color: var(--verde-claro); font-size: 1rem;
    }
    .diferencial div h4 { font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
    .diferencial div p { font-size: .8rem; color: var(--texto-medio); line-height: 1.5; font-weight: 300; margin: 0; }

    /* ══ PROCESSO ══ */
    #processo { background: #111111; }
    .etapas { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0; margin-top: 3rem; position: relative; }
    .etapas::before {
      content: ''; position: absolute; top: 38px; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent 0%, rgba(125,181,38,.5) 20%, rgba(154,202,60,.7) 50%, rgba(125,181,38,.5) 80%, transparent 100%);
    }
    .etapa { text-align: center; padding: 0 1.5rem 2rem; position: relative; }
    .etapa-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--cinza-medio); border: 2px solid var(--verde);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 800; color: var(--verde-claro);
      margin: 0 auto 1.2rem; position: relative; z-index: 1; transition: background .3s, color .3s;
    }
    .etapa:hover .etapa-num { background: var(--grad-verde); color: var(--preto); border-color: transparent; }
    .etapa h3 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
    .etapa p { font-size: .78rem; color: var(--texto-medio); line-height: 1.55; font-weight: 300; }

    /* ══ GALERIA ══ */
    #projetos { background: #0a0a0a; }
    .galeria-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
    .galeria-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
    .gal-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
    .gal-item:hover img { transform: scale(1.08); }
    .gal-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,26,4,.82) 0%, transparent 60%);
      opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.2rem;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }
    .gal-label { font-size: .88rem; font-weight: 700; color: var(--verde-claro); }
    .gal-1 { grid-column: span 7; height: 340px; }
    .gal-2 { grid-column: span 5; height: 340px; }
    .gal-3 { grid-column: span 4; height: 260px; }
    .gal-4 { grid-column: span 4; height: 260px; }
    .gal-5 { grid-column: span 4; height: 260px; }

    /* ══ DEPOIMENTOS ══ */
    #depoimentos { background: #111111; }
    .depo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .depo-card {
      background: rgba(125,181,38,.07); border: 1px solid rgba(154,202,60,.12);
      border-radius: 18px; padding: 1.8rem; position: relative; transition: border-color .3s, background .3s;
    }
    .depo-card:hover { border-color: rgba(154,202,60,.35); background: rgba(125,181,38,.11); }
    .depo-card::before {
      content: '\201C'; font-size: 4.5rem; color: var(--verde-claro);
      font-family: Georgia, serif; line-height: 1; position: absolute; top: .8rem; right: 1.4rem; opacity: .2;
    }
    .stars { color: #fbbf24; font-size: .85rem; margin-bottom: .8rem; }
    .depo-card p { color: var(--texto-claro); line-height: 1.75; font-size: .88rem; font-weight: 300; margin-bottom: 1.2rem; }
    .depo-autor { display: flex; align-items: center; gap: .8rem; }
    .depo-autor img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(154,202,60,.3); }
    .depo-autor div strong { display: block; font-size: .86rem; font-weight: 700; }
    .depo-autor div span { font-size: .76rem; color: var(--verde-claro); font-weight: 500; }

    /* ══ CTA BAND ══ */
    #cta-band {
      background: #1a1a1a; padding: 5rem 5vw; text-align: center;
      position: relative; overflow: hidden;
    }
    #cta-band::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    }
    #cta-band h2 { color: var(--preto); margin-bottom: .8rem; position: relative; }
    #cta-band p { color: rgba(13,26,4,.7); font-size: 1rem; margin-bottom: 2.2rem; font-weight: 400; position: relative; }
    .cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
    .btn-dark {
      background: var(--preto); color: var(--branco); border: none; padding: .9rem 2.2rem; border-radius: 10px;
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: .6rem; transition: all .2s; box-shadow: 0 4px 24px rgba(0,0,0,.3);
    }
    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,0,0,.4); }
    .btn-outline-dark {
      background: transparent; color: var(--preto); border: 2px solid var(--preto); padding: .9rem 2.2rem; border-radius: 10px;
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: .6rem; transition: all .2s;
    }
    .btn-outline-dark:hover { background: rgba(0,0,0,.1); transform: translateY(-2px); }

    /* ══ FORMULÁRIO ══ */
    #orcamento { background: #0a0a0a; }
    .form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .form-text p { color: var(--texto-claro); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; font-size: .9rem; }
    .form-benefits { display: flex; flex-direction: column; gap: .75rem; }
    .form-benefit { display: flex; align-items: center; gap: .7rem; color: var(--texto-claro); font-size: .86rem; }
    .form-benefit i { color: var(--verde-claro); width: 18px; text-align: center; }
    form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group label { font-size: .7rem; font-weight: 600; color: var(--texto-medio); text-transform: uppercase; letter-spacing: .08em; }
    .form-group input, .form-group select, .form-group textarea {
      background: rgba(125,181,38,.07); border: 1px solid rgba(154,202,60,.15);
      border-radius: 10px; padding: .78rem 1rem;
      color: var(--branco); font-family: 'Poppins', sans-serif; font-size: .88rem;
      outline: none; transition: border-color .2s, background .2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--verde-claro); background: rgba(125,181,38,.12);
    }
    .form-group select option { background: #152208; }
    .form-group textarea { resize: vertical; min-height: 110px; }
    ::placeholder { color: rgba(255,255,255,.28); }
    .btn-form {
      background: var(--grad-verde); color: var(--preto); border: none; padding: 1rem; border-radius: 10px;
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .03em;
      cursor: pointer; transition: all .25s; margin-top: .5rem;
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      box-shadow: 0 4px 24px rgba(125,181,38,.35);
    }
    .btn-form:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(125,181,38,.45); }
    .form-privacy { font-size: .73rem; color: var(--texto-medio); text-align: center; margin-top: .5rem; }
    .form-privacy i { color: var(--verde-claro); }

    /* ══ FOOTER ══ */
    footer {
    background: #000000;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 3.5rem 5vw 2rem;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
    .footer-brand img { height: 40px; margin-bottom: 1rem; }
    .footer-brand p { font-size: .8rem; color: var(--texto-medio); line-height: 1.65; }
    .footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .footer-col ul li a { color: var(--texto-medio); text-decoration: none; font-size: .8rem; transition: color .2s; font-weight: 400; }
    .footer-col ul li a:hover { color: var(--verde-claro); }
    .footer-contact { display: flex; flex-direction: column; gap: .7rem; }
    .footer-contact a { display: flex; align-items: center; gap: .6rem; color: var(--texto-medio); text-decoration: none; font-size: .8rem; transition: color .2s; font-weight: 400; }
    .footer-contact a:hover { color: var(--verde-claro); }
    .footer-contact a i { color: var(--verde-claro); width: 16px; font-size: .88rem; }
    .footer-bottom {
      border-top: 1px solid rgba(154,202,60,.08); padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: .76rem; color: var(--texto-medio); }
    .social-links { display: flex; gap: .75rem; }
    .social-links a {
      width: 38px; height: 38px; border-radius: 9px;
      background: rgba(125,181,38,.1); color: var(--texto-medio);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; text-decoration: none;
      transition: all .25s; border: 1px solid rgba(154,202,60,.12);
    }
    .social-links a:hover { background: var(--verde); color: var(--preto); border-color: transparent; }

    /* ══ WHATS FLOAT ══ */
    .whats-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: white;
      width: 62px; height: 62px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; text-decoration: none;
      box-shadow: 0 4px 24px rgba(37,211,102,.5); animation: pulse 2.5s infinite;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
      50% { box-shadow: 0 4px 40px rgba(37,211,102,.8), 0 0 0 14px rgba(37,211,102,.1); }
    }

    /* ══ RESPONSIVO ══ */
    @media (max-width: 900px) {
      nav ul { display: none; }
      nav .hamburger { display: block; }

      /* porque — empilha verticalmente, imagem acima, texto abaixo */
      .porque-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
      .porque-img-stack { height: 280px; width: 100%; }
      .porque-img-stack .img-main { width: 72%; height: 240px; }
      .porque-img-stack .img-small { width: 46%; height: 180px; }
      .badge-anos { bottom: 60px; }

      .form-wrapper { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gal-1, .gal-2 { grid-column: span 12; height: 240px; }
      .gal-3, .gal-4, .gal-5 { grid-column: span 12; height: 200px; }
    }
    @media (max-width: 600px) {
      .hero-stats { gap: 1.5rem; bottom: 2rem; }
      .stat strong { font-size: 1.8rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .etapas::before { display: none; }
      .porque-img-stack { height: 240px; }
      .porque-img-stack .img-main { width: 75%; height: 200px; }
      .porque-img-stack .img-small { width: 50%; height: 155px; }
      .badge-anos { bottom: 40px; padding: .7rem .9rem; }
      .badge-anos .num { font-size: 1.8rem; }
    }