*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand: #F47A1F;
    --brand-dark: #D96512;
    --brand-light: #FFF3E8;
    --brand-mid: #FF9A52;
    --accent: #F47A1F;
    --accent-dark: #B9510A;
    --accent-light: #FFF1E5;
    --text-primary: #1F1F1F;
    --text-secondary: #5F5F5F;
    --text-muted: #8B8B8B;
    --bg: #FFFFFF;
    --bg-subtle: #FCFAF8;
    --bg-section: #FFF8F2;
    --border: #EADFD5;
    --border-light: #F3EAE2;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-brand: 0 10px 30px rgba(244,122,31,0.22);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  a { text-decoration: none; color: inherit; }

  img { display: block; max-width: 100%; }

  .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
  }
  .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(244,122,31,0.30); }
  .btn-primary:active { transform: translateY(0); }

  .btn-secondary {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
  }
  .btn-secondary:hover { background: var(--brand-light); transform: translateY(-1px); }

  .btn-whatsapp {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 28px rgba(244,122,31,0.28);
  }
  .btn-whatsapp:hover { background: var(--brand-dark); transform: translateY(-1px); }

  .btn-ghost {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.20); }

  .btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 28px rgba(0,200,120,0.28);
  }
  .btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

  .btn-lg { padding: 18px 36px; font-size: 16px; }
  .btn-sm { padding: 10px 20px; font-size: 14px; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.2s;
  }
  .nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .logo {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-primary);
    letter-spacing: -0.015em;
  }
  .logo span { color: var(--brand); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--brand); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }

  /* ── HERO ── */
  .hero {
    padding: 140px 24px 100px;
    background: linear-gradient(160deg, var(--brand-light) 0%, var(--bg-subtle) 50%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(244,122,31,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244,122,31,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(26,106,255,0.15);
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: block; }
  .hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--brand);
  }
  .hero p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
  }
  .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 1;
  }
  .hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .signal-icon {
    width: 48px; height: 48px;
    background: var(--brand-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
  }
  .signal-icon svg { width: 24px; height: 24px; fill: var(--brand); }
  .hero-card h3 { font-size: 18px; margin-bottom: 4px; }
  .hero-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
  .speed-display {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
  }
  .speed-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
  }
  .speed-unit { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-mini {
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
  }
  .stat-mini .num { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 18px; color: var(--text-primary); }
  .stat-mini .label { font-size: 11px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
  .hero-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
  }
  .hero-float.f1 { top: -16px; right: -24px; color: var(--accent-dark); }
  .hero-float.f2 { bottom: 20px; left: -32px; color: var(--brand); }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

  /* ── SECTION COMMONS ── */
  section { padding: 96px 24px; }
  .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  .section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 400;
  }
  .section-header { margin-bottom: 64px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-sub { margin: 0 auto; }

  /* ── INTRO ── */
  .intro { background: var(--bg); }
  .intro-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }
  .pill {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
  }
  .pill.active { background: var(--brand-light); color: var(--brand); border-color: rgba(26,106,255,0.2); }
  .intro-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .mini-card {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .mini-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .mini-card.accent { background: var(--brand); color: #fff; }
  .mini-card.accent .mc-label, .mini-card.accent .mc-title { color: rgba(255,255,255,0.75); }
  .mini-card.accent .mc-main { color: #fff; }
  .mc-icon { font-size: 24px; margin-bottom: 12px; }
  .mc-main { font-family: Arial, Helvetica, sans-serif; font-size: 22px; font-weight: 700; }
  .mc-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
  .mc-title { font-size: 13px; color: var(--text-secondary); font-weight: 500; margin-top: 8px; }

  /* ── PLANS ── */
  .plans { background: var(--bg-section); }
  .plans-inner { max-width: 1120px; margin: 0 auto; }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }
  .plan-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    border: 1.5px solid var(--border);
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .plan-card.featured {
    border-color: var(--brand);
    border-width: 2px;
    box-shadow: var(--shadow-brand);
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(180deg, #FFF8F2 0%, #FFFFFF 100%);
  }
  .plan-card.featured:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 16px 48px rgba(26,106,255,0.25); }
  .plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .plan-speed {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
  }
  .plan-speed span { font-size: 20px; font-weight: 600; color: var(--text-muted); }
  .plan-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .plan-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
  .plan-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .plan-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
  }
  .check {
    width: 18px; height: 18px; min-width: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .check.blue { background: var(--brand-light); }
  .check.green { background: var(--accent-light); }
  .check svg { width: 10px; height: 10px; }
  .plan-price-block { margin-bottom: 24px; }
  .plan-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
  .plan-price { font-family: Arial, Helvetica, sans-serif; font-size: 28px; font-weight: 800; color: var(--text-primary); }
  .plan-price span { font-size: 15px; font-weight: 500; color: var(--text-muted); }
  .plan-microcopy {
    font-size: 13px;
    color: var(--accent-dark);
    font-weight: 600;
    margin-top: 8px;
    background: var(--accent-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
  }

  /* ── DECISION SUPPORT ── */
  .decision { background: var(--bg); }
  .decision-inner {
    max-width: 1120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .decision-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
  }
  .decision-inner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 40%;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
  }
  .decision-text h2 { color: #fff; font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 12px; }
  .decision-text p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.7; font-weight: 400; max-width: 520px; }

  /* ── TRUST ── */
  .trust { background: var(--bg-subtle); }
  .trust-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .trust-point {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .trust-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
  }
  .trust-icon svg { width: 16px; height: 16px; fill: var(--brand); }
  .trust-point-text { font-size: 14px; font-weight: 600; color: var(--text-primary); }
  .trust-visual {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
  }
  .trust-visual-title { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
  .bar-row { margin-bottom: 20px; }
  .bar-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
  .bar-track { height: 8px; background: var(--border-light); border-radius: 100px; overflow: hidden; }
  .bar-fill { height: 100%; border-radius: 100px; background: var(--brand); }

  /* ── BENEFITS ── */
  .benefits { background: var(--bg); }
  .benefits-inner { max-width: 1120px; margin: 0 auto; }
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .benefit-card {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); background: var(--bg); }
  .benefit-icon {
    width: 48px; height: 48px;
    background: var(--brand-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .benefit-icon svg { width: 22px; height: 22px; fill: var(--brand); }
  .benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
  .benefit-card p { font-size: 14px; color: var(--text-secondary); font-weight: 400; line-height: 1.65; }

  /* ── APP ── */
  .app-section { background: var(--bg-section); }
  .app-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .app-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
  .app-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
  }
  .app-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .app-mockup {
    display: flex;
    justify-content: center;
  }
  .phone-frame {
    width: 220px;
    background: var(--text-primary);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .phone-screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 380px;
  }
  .phone-status { background: var(--brand); height: 36px; display: flex; align-items: center; justify-content: center; }
  .phone-status span { color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; }
  .phone-body { padding: 16px; }
  .phone-greeting { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
  .phone-name { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
  .phone-stat {
    background: var(--bg-subtle);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
  }
  .phone-stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
  .phone-stat-value { font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-weight: 700; color: var(--brand); margin-top: 2px; }
  .phone-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
  .phone-action {
    background: var(--brand-light);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    color: var(--brand);
  }
  .phone-dot { width: 10px; height: 10px; background: rgba(255,255,255,0.4); border-radius: 50%; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); }

  /* ── LOCAL ── */
  .local { background: var(--bg); }
  .local-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
  .local-inner .section-sub { margin: 0 auto 40px; }
  .local-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
  .local-tag {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 8px;
  }
  .local-tag::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--bg-subtle); }
  .testimonials-inner { max-width: 1120px; margin: 0 auto; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s;
  }
  .testimonial-card:hover { box-shadow: var(--shadow-md); }
  .stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .star { width: 14px; height: 14px; fill: #F59E0B; }
  .testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; font-weight: 400; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
  }
  .author-name { font-size: 14px; font-weight: 600; }
  .author-plan { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

  /* ── FINAL CTA ── */
  .final-cta { background: var(--text-primary); padding: 96px 24px; }
  .final-cta-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
  .final-cta h2 { color: #fff; font-size: clamp(28px, 3vw, 44px); margin-bottom: 16px; }
  .final-cta p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 480px; margin: 0 auto 40px; font-weight: 400; }
  .final-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* ── FOOTER ── */
  footer { background: #1F1F1F; padding: 64px 24px 32px; }
  .footer-inner { max-width: 1120px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .footer-brand { }
  .footer-logo {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 400; max-width: 260px; }
  .footer-col h4 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
  .footer-col li a:hover { color: rgba(255,255,255,0.85); }
  .footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
  .footer-contact-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.4); flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

  /* ── STICKY WHATSAPP ── */
  .sticky-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 58px;
    height: 58px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(244,122,31,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .sticky-wa:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(244,122,31,0.45); }
  .sticky-wa svg { width: 28px; height: 28px; fill: #fff; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero-inner, .intro-inner, .trust-inner, .app-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .plan-card.featured { transform: none; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .decision-inner { grid-template-columns: 1fr; padding: 48px 36px; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .intro-visual { display: none; }
    .trust-visual { display: none; }
  }

  @media (max-width: 640px) {
    section { padding: 64px 20px; }
    .hero { padding: 120px 20px 64px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .trust-points { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .nav-links { display: none; }
    .nav-cta .btn-secondary { display: none; }
    .decision-inner { padding: 36px 24px; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease forwards; }
  .delay-1 { animation-delay: 0.1s; opacity: 0; }
  .delay-2 { animation-delay: 0.2s; opacity: 0; }
  .delay-3 { animation-delay: 0.3s; opacity: 0; }
  .delay-4 { animation-delay: 0.4s; opacity: 0; }
