@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

    /* =============================================
       DESIGN TOKENS
    ============================================= */
    :root {
      --bg-0: #0a0b0f;
      --bg-1: #111318;
      --bg-2: #181b22;
      --bg-glass: rgba(24,27,34,0.72);
      --gold: #f5a623;
      --gold-dim: #c4831a;
      --gold-glow: rgba(245,166,35,0.25);
      --green-wa: #25D366;
      --green-wa-dark: #128C7E;
      --text-1: #f0f0f0;
      --text-2: #a8aab8;
      --text-3: #6b6e80;
      --border: rgba(245,166,35,0.18);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-gold: 0 0 32px rgba(245,166,35,0.18);
      --font-display: 'Oswald', sans-serif;
      --font-body: 'Inter', sans-serif;
      --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    }

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

    
    /* =============================================
       UTILITY
    ============================================= */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .section-sub {
      color: var(--text-2);
      font-size: 1.05rem;
      margin-bottom: 48px;
    }
    .gold { color: var(--gold); }
    .tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 4px 14px;
      margin-bottom: 16px;
    }

    /* =============================================
       ANNOUNCEMENT BAR
    ============================================= */
    .announce-bar {
      background: var(--gold);
      color: #000;
      text-align: center;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 10px 20px;
      letter-spacing: 0.04em;
      position: relative;
      z-index: 200;
    }
    .announce-bar span { margin: 0 16px; }
    .announce-bar .blink {
      display: inline-block;
      width: 8px; height: 8px;
      background: #000;
      border-radius: 50%;
      animation: pulse-dot 1.4s ease-in-out infinite;
      vertical-align: middle;
      margin-right: 6px;
    }
    @keyframes pulse-dot {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:0.4;transform:scale(0.7)}
    }

    /* =============================================
       NAV
    ============================================= */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10,11,15,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      height: 64px;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .logo {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-1);
      white-space: nowrap;
      flex: 0 0 auto;
      margin-right: auto;
    }
    .logo span { color: var(--gold); }

    /* Links no centro */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      flex: 1 1 auto;
      justify-content: center;
      padding: 0 24px;
    }
    .nav-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-2);
      padding: 7px 14px;
      border-radius: 6px;
      transition: var(--transition);
      white-space: nowrap;
      letter-spacing: 0.03em;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--gold);
      background: rgba(245,166,35,0.08);
    }

    /* CTAs à direita */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      margin-left: auto;
    }
    .nav-ctas { display: flex; gap: 10px; align-items: center; }

    /* Hamburger button */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      cursor: pointer;
      padding: 8px;
      transition: var(--transition);
    }
    .nav-hamburger:hover { border-color: var(--gold); }
    .nav-hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text-1);
      border-radius: 2px;
      transition: var(--transition);
    }
    /* Animated X when open */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Backdrop */
    .nav-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 98;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-backdrop.visible { opacity: 1; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 100px;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .btn-gold {
      background: var(--gold);
      color: #000;
    }
    .btn-gold:hover { background: #ffc04d; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
    .btn-wa {
      background: var(--green-wa);
      color: #fff;
    }
    .btn-wa:hover { background: #20bd5a; transform: translateY(-1px); box-shadow: 0 0 24px rgba(37,211,102,0.3); }
    .btn-outline {
      background: transparent;
      color: var(--text-1);
      border: 1px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); }
    .btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 60px 0 80px;
    }
    /* Hero Banner */
    .hero-banner {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      filter: brightness(0.38) saturate(0.7);
    }
    .hero-banner-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(10,11,15,0.85) 0%, rgba(10,11,15,0.45) 55%, rgba(10,11,15,0.65) 100%),
        linear-gradient(to top, rgba(10,11,15,0.7) 0%, transparent 50%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,211,102,0.03) 0%, transparent 50%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-grid { position: relative; z-index: 2; }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: 0.01em;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: normal;
      color: var(--gold);
      display: block;
    }
    .hero-sub {
      color: var(--text-2);
      font-size: 1.1rem;
      max-width: 520px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
    .hero-badges {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      align-items: center;
    }
    .badge {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.82rem;
      color: var(--text-2);
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px;
      backdrop-filter: blur(8px);
    }
    .badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green-wa);
      flex-shrink: 0;
    }

    /* Hero card visual */
    .hero-visual {
      position: relative;
      z-index: 2;
    }
    .hero-card {
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow-gold), 0 40px 80px rgba(0,0,0,0.4);
    }
    .online-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,211,102,0.12);
      border: 1px solid rgba(37,211,102,0.3);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--green-wa);
      margin-bottom: 24px;
    }
    .online-pill .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green-wa);
      animation: pulse-green 2s ease-in-out infinite;
    }
    @keyframes pulse-green {
      0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5)}
      50%{box-shadow:0 0 0 8px rgba(37,211,102,0)}
    }
    .hero-card-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .hero-card-sub { color: var(--text-2); font-size: 0.9rem; margin-bottom: 24px; }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }
    .stat-box {
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 16px;
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.75rem; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; }
    .hero-card .btn-wa { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; border-radius: var(--radius-md); }
    .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 4px; }
    .rating-label { font-size: 0.78rem; color: var(--text-2); }
    .rating-box { text-align: center; }

    /* =============================================
       TRUST BAR
    ============================================= */
    .trust-bar {
      background: var(--bg-1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .trust-bar-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 32px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--text-2);
      font-weight: 500;
    }
    .trust-item svg { color: var(--gold); flex-shrink: 0; }
    .trust-divider { width: 1px; height: 20px; background: var(--border); }

    /* =============================================
       NÚMEROS / PROVA SOCIAL
    ============================================= */
    .numbers-section { background: var(--bg-1); }
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .number-card {
      text-align: center;
      padding: 32px 24px;
      border-radius: var(--radius-md);
      background: var(--bg-2);
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .number-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
    .number-big {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .number-label { color: var(--text-2); font-size: 0.9rem; }

    /* =============================================
       SERVIÇOS
    ============================================= */
    .services-section { background: var(--bg-0); }
    .services-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .tab-btn {
      padding: 10px 22px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-2);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .tab-btn.active, .tab-btn:hover {
      background: var(--gold);
      color: #000;
      border-color: var(--gold);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .service-card {
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: var(--transition);
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--gold-glow);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }
    .service-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
    }
    .service-desc { color: var(--text-2); font-size: 0.88rem; flex: 1; }
    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--green-wa);
      transition: var(--transition);
    }
    .service-cta:hover { gap: 10px; }

    /* =============================================
       DIFERENCIAIS
    ============================================= */
    .diff-section { background: var(--bg-1); }
    .diff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .diff-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 24px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: var(--transition);
    }
    .diff-item:hover { border-color: rgba(245,166,35,0.4); }
    .diff-check {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--gold-glow);
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      color: var(--gold);
      font-weight: 700;
    }
    .diff-text strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
    .diff-text span { color: var(--text-2); font-size: 0.85rem; }

    /* =============================================
       DEPOIMENTOS
    ============================================= */
    .reviews-section { background: var(--bg-0); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .review-card {
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      backdrop-filter: blur(12px);
      transition: var(--transition);
    }
    .review-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-2px); }
    .review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
    .review-text { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dim));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: #000;
    }
    .review-name { font-size: 0.92rem; font-weight: 600; }
    .review-meta { font-size: 0.78rem; color: var(--text-3); }
    .google-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      font-size: 0.75rem;
      color: var(--text-3);
    }

    /* =============================================
       ÁREA DE ATENDIMENTO
    ============================================= */
    .coverage-section { background: var(--bg-1); }
    .coverage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .coverage-map {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }
    .map-embed {
      width: 100%; height: 100%;
      border: none;
      filter: grayscale(60%) brightness(0.6) contrast(1.1);
    }
    .map-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17,19,24,0.6) 0%, transparent 50%);
      pointer-events: none;
    }
    .coverage-cities {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .city-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 500;
      transition: var(--transition);
    }
    .city-pill:hover { border-color: var(--gold); color: var(--gold); }
    .city-pin { font-size: 1rem; }

    /* =============================================
       FORMULÁRIO / ORÇAMENTO
    ============================================= */
    .form-section { background: var(--bg-0); }
    .form-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .form-card {
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      backdrop-filter: blur(20px);
    }
    .form-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .form-sub { color: var(--text-2); font-size: 0.9rem; margin-bottom: 28px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-2);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 13px 16px;
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text-1);
      font-size: 0.95rem;
      font-family: var(--font-body);
      transition: var(--transition);
      outline: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
    .form-group select option { background: var(--bg-1); }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--green-wa);
      color: #fff;
      border: none;
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 8px;
    }
    .form-submit:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
    .form-note { font-size: 0.78rem; color: var(--text-3); text-align: center; margin-top: 12px; }

    /* =============================================
       FAQ
    ============================================= */
    .faq-section { background: var(--bg-1); }
    .faq-list { max-width: 780px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--text-1);
      font-family: var(--font-body);
      gap: 16px;
      transition: var(--transition);
    }
    .faq-question:hover { color: var(--gold); }
    .faq-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      color: var(--gold);
      transition: var(--transition);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: var(--text-2);
      font-size: 0.93rem;
      line-height: 1.7;
    }
    .faq-answer.open { max-height: 200px; padding-bottom: 18px; }
    .faq-icon.open { transform: rotate(45deg); border-color: var(--gold); background: var(--gold-glow); }

    /* =============================================
       SEO LOCAL TEXTO
    ============================================= */
    .seo-section { background: var(--bg-0); }
    .seo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .seo-block {
      padding: 28px;
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
    }
    .seo-block h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--gold);
    }
    .seo-block p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }

    /* =============================================
       CTA SECTION
    ============================================= */
    .cta-section {
      background: linear-gradient(135deg, var(--bg-1) 0%, rgba(245,166,35,0.06) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 0;
      text-align: center;
    }
    .cta-section .section-title { margin-bottom: 16px; }
    .cta-section .section-sub { margin-bottom: 36px; }
    .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--bg-1);
      border-top: 1px solid var(--border);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand .logo { font-size: 1.5rem; margin-bottom: 12px; display: block; }
    .footer-brand p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
    .footer-col h4 {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-3);
      margin-bottom: 16px;
    }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { color: var(--text-2); font-size: 0.88rem; transition: var(--transition); }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { color: var(--text-3); font-size: 0.8rem; }

    /* =============================================
       FLOATING ELEMENTS
    ============================================= */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 60px; height: 60px;
      background: var(--green-wa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.5);
      animation: bounce-wa 3s ease-in-out infinite;
      transition: var(--transition);
    }
    .float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
    @keyframes bounce-wa {
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-6px)}
    }
    .float-wa svg { width: 30px; height: 30px; fill: #fff; }
    .float-wa-label {
      position: absolute;
      right: 72px;
      background: var(--bg-1);
      color: var(--text-1);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--border);
      white-space: nowrap;
      opacity: 0;
      transition: var(--transition);
      pointer-events: none;
    }
    .float-wa:hover .float-wa-label { opacity: 1; }



    /* =============================================
       URGENCY COUNTER
    ============================================= */
    .urgency-bar {
      background: linear-gradient(90deg, rgba(245,166,35,0.12), rgba(245,166,35,0.06), rgba(245,166,35,0.12));
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .urgency-text { font-size: 0.9rem; color: var(--text-2); }
    .urgency-text strong { color: var(--gold); }
    .urgency-counter { display: flex; gap: 8px; align-items: center; }
    .urg-digit {
      background: var(--bg-0);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 12px;
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      min-width: 48px;
      text-align: center;
    }
    .urg-sep { color: var(--gold); font-weight: 700; font-size: 1.2rem; }

    /* =============================================
       ANIMATIONS
    ============================================= */
    [data-reveal] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      [data-reveal] { opacity: 1; transform: none; }
      .float-wa { animation: none; }
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .coverage-grid { grid-template-columns: 1fr; }
      .form-wrap { grid-template-columns: 1fr; }
      .seo-grid { grid-template-columns: 1fr; }
    }

    /* ── Menu mobile (≤ 860px) ── */
    @media (max-width: 860px) {
      .nav-hamburger { display: flex; }
      .nav-backdrop { display: block; }

      .nav-links {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        left: auto;
        width: min(280px, 80vw);
        background: var(--bg-1);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 80px 20px 32px;
        z-index: 99;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        flex: none;
        margin: 0;
      }
      .nav-links.open { transform: translateX(0); }
      .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        display: block;
      }
    }

    @media (max-width: 600px) {
      .section { padding: 60px 0; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas .btn { justify-content: center; }
      .trust-bar-inner { flex-direction: column; gap: 12px; }
      .trust-divider { display: none; }
      .cta-buttons { flex-direction: column; }

      .announce-bar .announce-extras { display: none; }
      .nav-ctas .btn-outline { display: none; }
    }
