:root {
    --green: #2d7a3a;
    --green-light: #3a9e4b;
    --green-dark: #1a4f23;
    --orange: #e8640a;
    --orange-light: #ff7a1a;
    --black: #0a0a0a;
    --dark: #111612;
    --dark2: #181f1a;
    --gray: #2a2a2a;
    --gray-light: #888;
    --white: #f5f5f0;
    --cream: #ede8dc;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(45,122,58,0.2);
    transition: all 0.3s;
  }
  nav.scrolled { background: rgba(10,10,10,0.97); }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--green-light); }
  .logo-mark {
    width: 36px; height: 36px;
    background: var(--green);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; color: white;
  }
  .nav-cta {
    background: var(--green);
    color: white;
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--green);
    transition: all 0.2s;
  }
  .nav-cta:hover { background: transparent; color: var(--green-light); }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/J0uufDFcpr0gPspZ/whatsapp-image-2026-05-20-at-15.51.18-iU6IOnxwr58Xy7aE.jpeg');
    background-size: cover; background-position: center;
    filter: brightness(0.3) saturate(0.7);
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,79,35,0.4) 50%, rgba(10,10,10,0.9) 100%);
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(45,122,58,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45,122,58,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1300px; margin: 0 auto; padding: 120px 40px 80px;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(45,122,58,0.2);
    border: 1px solid rgba(45,122,58,0.5);
    padding: 6px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    color: var(--green-light);
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-light);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
  }
  .hero-title em { font-style: normal; color: var(--green-light); }
  .hero-title .accent-line {
    display: block;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
  }
  .hero-sub {
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,245,240,0.75);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.2s ease both;
  }
  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--green);
    color: white;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: var(--green-light); transform: translateX(-101%);
    transition: transform 0.3s ease;
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 1rem; letter-spacing: 1px;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
  }
  .btn-secondary:hover { border-color: var(--green-light); color: var(--green-light); }

  /* Phone strip */
  .hero-phones {
    display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s ease both;
  }
  .hero-phone {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    border-left: 2px solid var(--green);
    padding-left: 12px;
    transition: color 0.2s;
  }
  .hero-phone:hover { color: var(--green-light); }
  .hero-phone small { display: block; font-size: 0.65rem; letter-spacing: 1px; opacity: 0.6; font-weight: 400; }

  /* Floating card */
  .hero-card {
    background: rgba(17,22,18,0.92);
    border: 1px solid rgba(45,122,58,0.35);
    padding: 36px;
    backdrop-filter: blur(20px);
    animation: fadeInRight 0.9s 0.3s ease both;
  }
  .hero-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 2px;
    color: var(--green-light); text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(45,122,58,0.3);
  }
  .card-form input, .card-form select, .card-form textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    padding: 12px 16px; font-family: 'Barlow', sans-serif;
    font-size: 0.9rem; margin-bottom: 12px;
    outline: none; transition: border-color 0.2s;
  }
  .card-form input:focus, .card-form select:focus, .card-form textarea:focus {
    border-color: var(--green);
  }
  .card-form select option { background: var(--dark); }
  .card-form textarea { height: 80px; resize: none; }
  .card-form .btn-submit {
    width: 100%; background: var(--green);
    color: white; border: none; cursor: pointer;
    padding: 14px; font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 2px;
    text-transform: uppercase; transition: background 0.2s;
  }
  .card-form .btn-submit:hover { background: var(--green-light); }
  .card-trust {
    display: flex; align-items: center; gap: 8px;
    margin-top: 12px; color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
  }
  .card-trust svg { color: var(--green); flex-shrink: 0; }

  @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

  /* ===== STATS BAR ===== */
  .stats-bar {
    background: var(--green-dark);
    border-top: 2px solid var(--green);
    border-bottom: 2px solid rgba(45,122,58,0.3);
    padding: 28px 40px;
  }
  .stats-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center; padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem; line-height: 1;
    color: var(--white);
  }
  .stat-num span { color: var(--green-light); }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6); text-transform: uppercase;
    margin-top: 4px;
  }

  /* ===== SECTION GENERAL ===== */
  section { padding: 100px 40px; }
  .section-inner { max-width: 1300px; margin: 0 auto; }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
    color: var(--green-light); text-transform: uppercase;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before {
    content: ''; width: 30px; height: 2px; background: var(--green);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1; letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .section-title em { font-style: normal; color: var(--green-light); }
  .section-desc {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(245,245,240,0.65); max-width: 600px;
  }

  /* ===== SERVICES ===== */
  #servicos { background: var(--dark); }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 64px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .service-card {
    background: var(--dark2);
    padding: 44px 32px;
    position: relative; overflow: hidden;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--green);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .service-card:hover { transform: translateY(-4px); background: #1a2a1c; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    background: rgba(45,122,58,0.15);
    border: 1px solid rgba(45,122,58,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
  }
  .service-num {
    position: absolute; top: 20px; right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; color: rgba(45,122,58,0.08);
    line-height: 1; pointer-events: none;
  }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px; color: var(--white);
  }
  .service-desc {
    font-size: 0.88rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,245,240,0.6);
  }

  /* ===== PROCESS ===== */
  #processo { background: var(--black); }
  .process-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    margin-top: 64px; position: relative;
  }
  .process-grid::before {
    content: ''; position: absolute;
    top: 36px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    z-index: 0;
  }
  .process-step {
    text-align: center; padding: 0 20px; position: relative; z-index: 1;
  }
  .step-circle {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--dark2); border: 2px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    color: var(--green-light);
    position: relative;
    transition: all 0.3s;
  }
  .process-step:hover .step-circle {
    background: var(--green); color: white; transform: scale(1.1);
  }
  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 8px;
  }
  .step-desc {
    font-size: 0.82rem; font-weight: 300; line-height: 1.6;
    color: rgba(245,245,240,0.55);
  }

  /* ===== PRODUCTS ===== */
  #produtos { background: var(--dark); }
  .products-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    margin-top: 64px;
  }
  .product-block {
    position: relative; overflow: hidden; cursor: default;
    min-height: 420px;
  }
  .product-block img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.45) saturate(0.6);
    transition: filter 0.5s, transform 0.5s;
  }
  .product-block:hover img { filter: brightness(0.3) saturate(0.5); transform: scale(1.03); }
  .product-info {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 60%);
  }
  .product-tag {
    display: inline-block;
    background: var(--green);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
    padding: 4px 12px; text-transform: uppercase;
    margin-bottom: 12px; width: fit-content;
  }
  .product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 1px; margin-bottom: 8px;
  }
  .product-desc {
    font-size: 0.85rem; font-weight: 300; line-height: 1.6;
    color: rgba(245,245,240,0.7);
    transform: translateY(20px); opacity: 0;
    transition: all 0.3s;
    max-width: 360px;
  }
  .product-block:hover .product-desc { transform: translateY(0); opacity: 1; }

  /* NBR block */
  .nbr-block {
    grid-column: 1 / -1;
    background: var(--green-dark);
    padding: 48px;
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
    border-top: 3px solid var(--green-light);
  }
  .nbr-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 1px; margin-bottom: 8px;
  }
  .nbr-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
  .nbr-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    color: var(--green-light);
  }
  .nbr-cta { text-align: right; }

  /* ===== GALLERY ===== */
  #galeria { background: var(--black); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 4px; margin-top: 48px;
  }
  .gallery-item {
    overflow: hidden; position: relative;
  }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.6) brightness(0.85);
    transition: all 0.5s;
  }
  .gallery-item:hover img { filter: saturate(1) brightness(0.95); transform: scale(1.04); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(45,122,58,0);
    transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-item:hover .gallery-overlay { background: rgba(45,122,58,0.15); }

  /* ===== WHY US ===== */
  #diferenciais { background: var(--dark); }
  .diff-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-top: 60px;
  }
  .diff-visual {
    position: relative;
  }
  .diff-visual img {
    width: 100%; height: 480px; object-fit: cover;
    filter: brightness(0.7) saturate(0.7);
  }
  .diff-visual-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center; line-height: 1.1;
  }
  .diff-visual-accent .big { font-size: 2.5rem; }
  .diff-visual-accent .small { font-size: 0.7rem; letter-spacing: 1px; opacity: 0.85; }
  .diff-list { display: grid; gap: 0; }
  .diff-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .diff-item:first-child { padding-top: 0; }
  .diff-item:last-child { border-bottom: none; }
  .diff-check {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(45,122,58,0.15);
    border: 1px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-light); font-size: 1rem;
    margin-top: 2px;
  }
  .diff-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 4px;
  }
  .diff-text p {
    font-size: 0.88rem; font-weight: 300; line-height: 1.6;
    color: rgba(245,245,240,0.6);
  }

  /* ===== COVERAGE ===== */
  .coverage-bar {
    background: var(--green-dark);
    padding: 48px 40px;
    border-top: 2px solid rgba(45,122,58,0.4);
    border-bottom: 2px solid rgba(45,122,58,0.4);
  }
  .coverage-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center;
  }
  .coverage-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; letter-spacing: 1px; line-height: 1;
    white-space: nowrap;
  }
  .coverage-title em { color: var(--green-light); font-style: normal; }
  .cities {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .city-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    color: var(--white); text-transform: uppercase;
    transition: all 0.2s;
  }
  .city-tag:hover { background: var(--green); border-color: var(--green); }

  /* ===== CTA SECTION ===== */
  #cta {
    background: var(--black);
    padding: 100px 40px;
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1440,h=960,fit=crop/J0uufDFcpr0gPspZ/chatgpt-image-24-de-mai.-de-2026-12_12_38-leUuEd9ACewXc3fi.png');
    background-size: cover; background-position: center;
    filter: brightness(0.15) saturate(0.4);
  }
  .cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 2px; line-height: 1; margin-bottom: 20px;
  }
  .cta-title em { color: var(--green-light); font-style: normal; }
  .cta-sub {
    font-size: 1.05rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,245,240,0.7); margin-bottom: 40px;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 12px;
    background: #25D366; color: white;
    padding: 18px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.1rem; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.25s;
  }
  .btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
  .btn-phone {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; color: var(--white);
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 1.1rem; letter-spacing: 1px;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
  }
  .btn-phone:hover { border-color: var(--green-light); color: var(--green-light); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(45,122,58,0.2);
    padding: 64px 40px 32px;
  }
  .footer-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
  }
  .footer-brand p {
    font-size: 0.88rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,245,240,0.5); margin-top: 16px; max-width: 320px;
  }
  .footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    color: var(--green-light); text-transform: uppercase; margin-bottom: 16px;
  }
  .footer-col a, .footer-col span {
    display: block; text-decoration: none;
    font-size: 0.88rem; font-weight: 300;
    color: rgba(245,245,240,0.55); margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--green-light); }
  .footer-bottom {
    max-width: 1300px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p {
    font-size: 0.8rem; color: rgba(245,245,240,0.35);
  }
  .footer-norms {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .norm-badge {
    background: rgba(45,122,58,0.2); border: 1px solid rgba(45,122,58,0.3);
    padding: 3px 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    color: var(--green-light);
  }

  /* ===== WHATSAPP FLOAT ===== */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    text-decoration: none; color: white;
    animation: waBounce 3s ease infinite;
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.1); }
  @keyframes waBounce {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
  }
  .wa-float svg { width: 30px; height: 30px; }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--green); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .services-header { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .process-grid::before { display: none; }
    .process-step:nth-child(4), .process-step:nth-child(5) { grid-column: auto; }
    .products-layout { grid-template-columns: 1fr; }
    .product-block { min-height: 300px; }
    .diff-grid { grid-template-columns: 1fr; }
    .diff-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .coverage-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
    .gallery-item:first-child { grid-column: span 2; }
  }

  @media (max-width: 640px) {
    section { padding: 60px 20px; }
    nav { padding: 14px 20px; }
    .hero-content { padding: 100px 20px 60px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-title { font-size: 3.2rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .gallery-item { height: 220px; }
    .gallery-item:first-child { grid-column: auto; }
    .nbr-block { grid-template-columns: 1fr; }
    .nbr-cta { text-align: left; }
    .hero-phones { flex-direction: column; }
  }