    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --blue: #1B8FD9;
      --blue-light: #35A7F0;
      --blue-dark: #1374B8;
      --blue-glow: rgba(27, 143, 217, 0.25);
      --bg: #0B0F18;
      --surface: #111827;
      --card: rgba(255, 255, 255, 0.05);
      --border: rgba(255, 255, 255, 0.08);
      --text: #F1F5F9;
      --text-muted: #8B9AB0;
      --radius: 16px;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── TOP BAR ─── */
    .top-bar {
      height: 3px;
      background: linear-gradient(90deg, #0B0F18, var(--blue), var(--blue-light), var(--blue));
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: 0% 0;
      }

      100% {
        background-position: 200% 0;
      }
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 25px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: rgba(11, 15, 24, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
      min-width: 0;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      min-width: 0;
      flex-shrink: 1;
    }

    .logo-img {
      height: 50px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo-text h1 {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.1;
    }

    .logo-text h1 span {
      color: var(--blue);
    }

    .logo-text p {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-muted);
      margin-top: 1px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid var(--border);
      background: var(--card);
      color: var(--text-muted);
      transition: all 0.25s ease;
    }

    .btn-header:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(27, 143, 217, 0.08);
    }

    .btn-header-cta {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }

    .btn-header-cta:hover {
      background: var(--blue-light);
      border-color: var(--blue-light);
      color: #fff;
      box-shadow: 0 4px 20px var(--blue-glow);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      padding: 80px 32px 60px;
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
      min-height: calc(100vh - 75px);
    }

    /* Background blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .blob-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(27, 143, 217, 0.12) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      animation: float1 8s ease-in-out infinite;
    }

    .blob-2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(53, 167, 240, 0.08) 0%, transparent 70%);
      bottom: 0;
      left: -50px;
      animation: float2 10s ease-in-out infinite;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-30px) scale(1.05);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(20px) scale(0.95);
      }
    }

    /* Circuit decoration */
    .circuit-bg {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      pointer-events: none;
      background-image:
        radial-gradient(circle, var(--blue) 1px, transparent 1px),
        linear-gradient(var(--blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue) 1px, transparent 1px);
      background-size: 60px 60px, 60px 60px, 60px 60px;
    }

    .hero-content {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(27, 143, 217, 0.10);
      border: 1px solid rgba(27, 143, 217, 0.30);
      color: var(--blue-light);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }

    .badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue-light);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 20px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero-title .accent {
      color: var(--blue);
    }

    .hero-title .accent-light {
      color: var(--blue-light);
    }

    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 540px;
      margin-bottom: 36px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-desc strong {
      color: var(--blue-light);
      font-weight: 600;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(27, 143, 217, 0.35);
      transition: all 0.25s ease;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(27, 143, 217, 0.50);
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
    }

    .btn-primary .arrow {
      transition: transform 0.25s ease;
    }

    .btn-primary:hover .arrow {
      transform: translateX(4px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 24px;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.25s ease;
      background: var(--card);
    }

    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: rgba(27, 143, 217, 0.06);
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .trust-item i {
      color: var(--blue-light);
    }

    .hero-visual {
      flex: 1;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-card-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
    }

    .hero-img {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
      display: block;
    }

    /* Floating stat cards */
    .stat-card {
      position: absolute;
      background: rgba(17, 24, 39, 0.92);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .stat-card .stat-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(27, 143, 217, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-light);
      font-size: 18px;
      flex-shrink: 0;
    }

    .stat-card .stat-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    .stat-card .stat-val {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }

    .stat-card-1 {
      bottom: -20px;
      left: -30px;
      animation: floatCard1 5s ease-in-out infinite;
    }

    .stat-card-2 {
      top: 20px;
      right: -30px;
      animation: floatCard2 6s ease-in-out infinite;
    }

    @keyframes floatCard1 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatCard2 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(10px);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── SECTION COMMON ─── */
    section {
      padding: 80px 32px;
    }

    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--blue-light);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
      line-height: 1.15;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }

    .section-head {
      margin-bottom: 48px;
    }

    /* ─── SERVICES ─── */
    #servicos {
      background: var(--surface);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(27, 143, 217, 0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      border-color: rgba(27, 143, 217, 0.4);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(27, 143, 217, 0.2);
    }

    .service-card .card-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: rgba(27, 143, 217, 0.12);
      border: 1px solid rgba(27, 143, 217, 0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 26px;
      color: var(--blue-light);
      transition: all 0.3s ease;
    }

    .service-card:hover .card-icon-wrap {
      background: rgba(27, 143, 217, 0.20);
      box-shadow: 0 0 20px var(--blue-glow);
    }

    .service-card h3 {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .service-card .card-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--blue);
      background: rgba(27, 143, 217, 0.10);
      padding: 4px 10px;
      border-radius: 50px;
    }

    /* ─── WHY US ─── */
    #diferenciais {
      background: var(--bg);
    }

    .diferenciais-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .diferenciais-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .diferencial-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: all 0.25s ease;
    }

    .diferencial-item:hover {
      background: var(--card);
      border-color: var(--border);
    }

    .diferencial-item .dif-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(27, 143, 217, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-light);
      font-size: 20px;
      flex-shrink: 0;
    }

    .diferencial-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .diferencial-item p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .diferenciais-card {
      background: linear-gradient(135deg, rgba(27, 143, 217, 0.10), rgba(27, 143, 217, 0.03));
      border: 1px solid rgba(27, 143, 217, 0.20);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .diferenciais-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(27, 143, 217, 0.08) 0%, transparent 60%);
    }

    .diferenciais-card .big-icon {
      font-size: 64px;
      color: var(--blue-light);
      margin-bottom: 20px;
      display: block;
      filter: drop-shadow(0 0 20px var(--blue-glow));
    }

    .diferenciais-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .diferenciais-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .diferenciais-card .stats-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .diferenciais-card .stat {
      text-align: center;
    }

    .diferenciais-card .stat .num {
      font-size: 28px;
      font-weight: 900;
      color: var(--blue-light);
      display: block;
    }

    .diferenciais-card .stat .lbl {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ─── TESTIMONIALS ─── */
    #depoimentos {
      background: var(--surface);
    }

    .testimonials-layout {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      align-items: center;
    }

    .testimonials-grid {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      flex: 1 1 500px;
    }

    .approval-seal-container {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .approval-seal {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(27,143,217,0.15), rgba(27,143,217,0.02));
      border: 2px dashed rgba(27,143,217,0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      animation: floatSeal 6s ease-in-out infinite;
      box-shadow: 0 0 40px var(--blue-glow), inset 0 0 20px rgba(27,143,217,0.1);
    }

    .approval-seal::before {
      content: '';
      position: absolute;
      inset: -15px;
      border-radius: 50%;
      border: 1px dashed rgba(27,143,217,0.2);
      animation: spinSeal 20s linear infinite;
    }

    .approval-seal i {
      font-size: 64px;
      color: var(--blue-light);
      margin-bottom: 12px;
      filter: drop-shadow(0 0 10px var(--blue-glow));
    }

    .approval-seal .seal-percent {
      font-size: 54px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -2px;
    }

    .approval-seal .seal-text {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--blue-light);
      margin-top: 8px;
    }

    @keyframes floatSeal {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @keyframes spinSeal {
      100% { transform: rotate(360deg); }
    }

    .testimonial-img {
      max-width: 600px;
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .testimonial-img:hover {
      transform: scale(1.02) translateY(-4px);
      border-color: rgba(27, 143, 217, 0.4);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    /* ─── LOCATION ─── */
    #localizacao {
      background: var(--bg);
    }

    .location-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .location-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: all 0.25s ease;
    }

    .info-card:hover {
      border-color: rgba(27, 143, 217, 0.35);
      background: rgba(27, 143, 217, 0.04);
    }

    .info-card .ic {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(27, 143, 217, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-light);
      font-size: 18px;
      flex-shrink: 0;
    }

    .info-card .info-text {
      flex: 1;
    }

    .info-card .info-text .info-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .info-card .info-text p,
    .info-card .info-text a {
      font-size: 15px;
      color: var(--text);
      font-weight: 500;
      text-decoration: none;
      line-height: 1.5;
    }

    .info-card .info-text a:hover {
      color: var(--blue-light);
    }

    .map-container {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .map-container iframe {
      width: 100%;
      height: 360px;
      display: block;
      border: none;
      filter: saturate(0.8) brightness(0.85);
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      padding: 80px 32px;
      background: linear-gradient(135deg, rgba(27, 143, 217, 0.15) 0%, rgba(19, 116, 184, 0.08) 100%);
      border-top: 1px solid rgba(27, 143, 217, 0.15);
      border-bottom: 1px solid rgba(27, 143, 217, 0.15);
    }

    .cta-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-inner h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .cta-inner h2 span {
      color: var(--blue-light);
    }

    .cta-inner p {
      font-size: 17px;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 48px 32px 28px;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px;
    }

    .footer-brand {
      max-width: 320px;
    }

    .footer-brand .logo-area {
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .footer-links h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-muted);
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links ul a {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links ul a:hover {
      color: var(--blue-light);
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .social-btn:hover {
      border-color: var(--blue);
      color: var(--blue-light);
      background: rgba(27, 143, 217, 0.10);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-bottom span {
      color: var(--blue);
      font-weight: 600;
    }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: #fff;
      padding: 14px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
      transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-float i {
      font-size: 20px;
    }

    .whatsapp-float .wpp-label {
      white-space: nowrap;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    /* ─── MOBILE MENU ─── */
    .mobile-menu {
      display: none;
      position: sticky;
      top: 0;
      z-index: 99;
      flex-direction: column;
      background: rgba(11, 15, 24, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .mobile-menu.open {
      max-height: 400px;
      padding: 8px 0 16px;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      border-left: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
      color: var(--blue-light);
      border-left-color: var(--blue);
      background: rgba(27, 143, 217, 0.06);
    }

    .mobile-menu a i {
      color: var(--blue-light);
      font-size: 16px;
      width: 20px;
      text-align: center;
    }

    /* Link WhatsApp no menu mobile com destaque */
    .mobile-menu a:last-child {
      color: #25D366;
      margin-top: 8px;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    .mobile-menu a:last-child i {
      color: #25D366;
    }

    /* Menu mobile só aparece em telas ≤ 768px */
    @media (max-width: 768px) {
      .mobile-menu {
        display: flex;
      }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .diferenciais-wrap {
        grid-template-columns: 1fr;
      }

      .location-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 12px 16px;
        gap: 8px;
      }

      /* Esconde o subtítulo da logo para caber no celular */
      .logo-text p {
        display: none;
      }

      /* Reduz tamanho da logo */
      .logo-img {
        height: 40px;
      }

      /* Esconde os botões de navegação (Serviços, Localização) */
      .header-actions .btn-header:not(.btn-header-cta) {
        display: none;
      }

      /* Botão WhatsApp CTA — só ícone, sem texto */
      .btn-header-cta .btn-cta-text {
        display: none;
      }

      .btn-header-cta {
        padding: 9px 12px;
        font-size: 18px;
        border-radius: 10px;
      }

      /* Mostra botão hamburger */
      .menu-toggle {
        display: block;
        padding: 8px 10px;
        font-size: 15px;
      }

      section {
        padding: 60px 20px;
      }

      .hero {
        flex-direction: column;
        padding: 48px 20px 60px;
        min-height: auto;
        gap: 40px;
      }

      .hero-visual {
        width: 100%;
      }

      .stat-card-1 {
        left: 0;
        bottom: -10px;
      }

      .stat-card-2 {
        right: 0;
        top: 10px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        flex-direction: column;
      }

      /* Botão flutuante do WhatsApp — só ícone */
      .whatsapp-float .wpp-label {
        display: none;
      }

      .whatsapp-float {
        padding: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        letter-spacing: -1.5px;
      }

      .hero-trust {
        flex-direction: column;
        gap: 12px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }