:root {
      --primary: #032ca6;
      --secondary: #111111;
      --white: #ffffff;
      --gray-100: #f7f7f7;
      --gray-200: #ededed;
      --gray-400: #c7c7c7;
      --gray-600: #8f8f8f;
      --gray-800: #222222;
      --accent: #1a47d4;
      --nav-height: 72px;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: var(--secondary);
      background: var(--white);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Namian', 'Inter', sans-serif;
    }

    button, .btn {
      font-family: 'Namian', 'Inter', sans-serif;
      cursor: pointer;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--secondary);
      height: var(--nav-height);
      transition: box-shadow 0.3s;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo img {
      height: 32px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-400);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      background: var(--primary);
      color: var(--white);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.2s, transform 0.1s;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: var(--secondary);
      padding: 24px;
      z-index: 99;
      border-top: 1px solid #2a2a2a;
    }

    .mobile-menu.open { display: block; }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
    }

    .mobile-menu li a {
      display: block;
      padding: 16px 0;
      font-size: 16px;
      font-weight: 500;
      color: var(--gray-400);
      border-bottom: 1px solid #2a2a2a;
      transition: color 0.2s;
    }

    .mobile-menu li a:hover { color: var(--white); }

    .mobile-menu .mobile-cta {
      display: block;
      margin-top: 20px;
      padding: 14px 20px;
      background: var(--primary);
      color: var(--white);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
      text-align: center;
    }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      background: var(--secondary);
      display: flex;
      align-items: center;
      padding-top: var(--nav-height);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(3, 44, 166, 0.2);
      border: 1px solid var(--primary);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: #6b92f5;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #4b73ff, var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--gray-400);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      background: var(--primary);
      color: var(--white);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(3, 44, 166, 0.4);
    }

    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(3, 44, 166, 0.5);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-400);
      transition: color 0.2s;
    }

    .btn-secondary:hover { color: var(--white); }

    .hero-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/5;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      pointer-events: none;
    }

    /* ========== BULLETS ========== */
    .bullets {
      background: var(--primary);
      padding: 32px 0;
    }

    .bullets-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .bullet-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 24px;
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    .bullet-item:last-child { border-right: none; }

    .bullet-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.15);
      border-radius: 8px;
      flex-shrink: 0;
    }

    .bullet-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .bullet-label {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 2px;
    }

    .bullet-value {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }

    /* ========== SECTIONS COMMONS ========== */
    .section { padding: 96px 0; }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--gray-600);
      max-width: 560px;
      line-height: 1.7;
    }

    .section-header { margin-bottom: 56px; }

    /* ========== EMENTA ========== */
    .ementa { background: var(--secondary); }
    .ementa .section-label { color: var(--primary); }
    .ementa .section-title { color: var(--white); }

    .accordion {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .accordion-item {
      background: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #2a2a2a;
    }

    .accordion-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      gap: 16px;
    }

    .accordion-trigger-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .accordion-number {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary);
      min-width: 36px;
      font-family: 'Namian', 'Inter', sans-serif;
    }

    .accordion-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
    }

    .accordion-meta {
      font-size: 12px;
      font-weight: 500;
      color: var(--gray-600);
      margin-top: 4px;
    }

    .accordion-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #444;
      transition: transform 0.3s;
    }

    .accordion-icon svg {
      width: 12px;
      height: 12px;
      stroke: var(--gray-400);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .accordion-item.open .accordion-icon { transform: rotate(180deg); }

    .accordion-body {
      display: none;
      padding: 0 24px 24px;
      border-top: 1px solid #2a2a2a;
    }

    .accordion-item.open .accordion-body { display: block; }

    .accordion-body p {
      font-size: 15px;
      color: var(--gray-400);
      line-height: 1.7;
    }

    .ementa-cta {
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border: 1px solid rgba(255,255,255,0.25);
      color: var(--white);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.05);
    }

    .ementa-note {
      font-size: 14px;
      color: var(--gray-600);
    }

    .ementa-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: start;
      margin-top: 40px;
    }

    .ementa-sidebar {
      background: var(--primary);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      position: relative;
      margin-top: 60px;
    }

    .ementa-sidebar-image {
      width: 180px;
      margin: -110px auto 24px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    .ementa-sidebar-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .ementa-sidebar-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
      margin-bottom: 32px;
    }

    .btn-sidebar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #000;
      color: var(--white);
      padding: 16px 24px;
      border-radius: 10px;
      font-weight: 700;
      width: 100%;
      transition: transform 0.2s;
      border: none;
      font-size: 15px;
    }

    .btn-sidebar:hover {
      transform: translateY(-2px);
    }

    .btn-sidebar svg {
      width: 18px;
      height: 18px;
    }

    /* ========== DEPOIMENTOS ========== */
    .testimonials { background: var(--gray-100); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px;
      border: 1px solid var(--gray-200);
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }

    .testimonial-stars span { font-size: 16px; color: #f59e0b; }

    .testimonial-text {
      font-size: 15px;
      color: var(--gray-800);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--gray-200);
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--secondary);
    }

    .testimonial-role {
      font-size: 13px;
      color: var(--gray-600);
    }

    /* ========== EXPERTS ========== */
    .experts { background: var(--secondary); }
    .experts .section-label { color: #6b92f5; }
    .experts .section-title { color: var(--white); }

    .experts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .expert-card {
      background: #1a1a1a;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #2a2a2a;
      transition: border-color 0.2s, transform 0.2s;
    }

    .expert-card:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .expert-photo {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
    }

    .expert-info { padding: 16px; }

    .expert-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .expert-role {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.4;
    }

    /* ========== COMO FUNCIONA ========== */
    .como-funciona { background: var(--white); padding: 96px 0; }
    .como-funciona .section-label { color: #1a47d4; }
    .como-funciona .section-title { font-size: clamp(32px, 5vw, 48px); }
    
    .method-features {
      display: flex;
      flex-direction: column;
      gap: 80px;
    }

    .method-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .method-feature.reverse .method-feature-image {
      order: 2;
    }
    
    .method-feature.reverse .method-feature-content {
      order: 1;
    }

    .method-feature-image {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 16px;
      overflow: hidden;
      background: var(--gray-100);
      position: relative;
    }

    .method-feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .method-subtitle {
      font-size: 12px;
      font-weight: 700;
      color: #1a47d4;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .method-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 20px;
      line-height: 1.1;
      letter-spacing: -0.5px;
    }

    .method-desc {
      font-size: 16px;
      color: var(--gray-800);
      line-height: 1.6;
    }

    .method-desc span {
      font-size: 14px;
      color: var(--gray-600);
      display: block;
      margin-top: 16px;
    }
    
    .btn-green {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      background: #1a47d4;
      color: white;
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border-radius: 8px;
      border: none;
      transition: transform 0.15s, box-shadow 0.2s;
      margin-top: 24px;
    }

    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 217, 0, 0.4);
    }

    /* ========== PRICING ========== */
    .pricing { background: var(--primary); }

    .pricing-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 64px;
      align-items: center;
    }

    .pricing-headline .section-label { color: rgba(255,255,255,0.6); }
    .pricing-headline .section-title { color: var(--white); margin-bottom: 16px; }

    .pricing-headline p {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
    }

    .pricing-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 20px;
      padding: 36px;
    }

    .pricing-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }

    .pricing-value {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
    }

    .pricing-value .prefix {
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
    }

    .pricing-value .amount {
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .pricing-installments {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
    }

    .pricing-pix {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      padding: 10px 14px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      margin-bottom: 24px;
    }

    .pricing-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.15);
      margin: 20px 0;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: rgba(255,255,255,0.85);
    }

    .pricing-features li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      font-size: 11px;
      flex-shrink: 0;
    }

    .btn-pricing {
      display: block;
      width: 100%;
      padding: 16px;
      background: var(--white);
      color: var(--primary);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      border-radius: 10px;
      text-align: center;
      border: none;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .btn-pricing:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }

    /* ========== FAQ ========== */
    .faq { background: var(--white); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: flex-start;
    }

    .faq-sidebar {
      position: sticky;
      top: calc(var(--nav-height) + 24px);
    }

    .faq-sidebar .section-title { margin-bottom: 16px; }

    .faq-sidebar p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.7;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
    }

    .faq-item { border-bottom: 1px solid var(--gray-200); }

    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 24px 0;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      gap: 16px;
    }

    .faq-question {
      font-size: 16px;
      font-weight: 600;
      color: var(--secondary);
      line-height: 1.4;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: transform 0.3s;
      margin-top: 2px;
    }

    .faq-icon svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      display: none;
      padding: 0 40px 24px 0;
    }

    .faq-item.open .faq-answer { display: block; }

    .faq-answer p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ========== CTA ========== */
    .cta-section {
      background: var(--primary);
      padding: 96px 0;
      text-align: center;
    }

    .cta-section .section-title { color: var(--white); margin-bottom: 16px; }
    .cta-section .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto 40px; }

    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 40px;
      background: var(--white);
      color: var(--primary);
      font-family: 'Namian', 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }

    .whatsapp-float {
      position: fixed;
      right: calc(24px + env(safe-area-inset-right));
      bottom: calc(24px + env(safe-area-inset-bottom));
      z-index: 999;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px 14px 16px;
      background: #25d366;
      color: var(--white);
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 16px 40px rgba(37,211,102,0.35);
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .whatsapp-float i {
      font-size: 24px;
      line-height: 1;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 48px rgba(37,211,102,0.42);
      filter: brightness(1.02);
    }

    .whatsapp-float:focus-visible {
      outline: 3px solid rgba(37,211,102,0.35);
      outline-offset: 4px;
    }

    .whatsapp-float-text {
      white-space: nowrap;
    }

    /* ========== FOOTER ========== */
    .site-footer {
      background: var(--secondary);
      padding: 64px 0 32px;
      border-top: 1px solid #1a1a1a;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand .logo img { height: 28px; margin-bottom: 16px; }

    .footer-desc {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      max-width: 280px;
    }

    .footer-nav h4 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gray-600);
      margin-bottom: 16px;
    }

    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-nav a {
      font-size: 14px;
      color: var(--gray-400);
      transition: color 0.2s;
    }

    .footer-nav a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid #1a1a1a;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--gray-600);
    }

    .footer-copy a { color: var(--gray-600); transition: color 0.2s; }
    .footer-copy a:hover { color: var(--white); }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .bullets-inner { grid-template-columns: repeat(2, 1fr); }
      .bullet-item:nth-child(2) { border-right: none; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .experts-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
      .faq-grid { grid-template-columns: 1fr; gap: 40px; }
      .faq-sidebar { position: static; }
      .sirius-card { flex-direction: column; text-align: center; padding: 32px; }
      .footer-top { grid-template-columns: repeat(2, 1fr); }
      .ementa-grid { grid-template-columns: 1fr; gap: 80px; }
      .ementa-sidebar { max-width: 480px; margin: 60px auto 0; }
    }

    @media (max-width: 768px) {
      :root { --nav-height: 64px; }

      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
        text-align: center;
      }

      .hero-subtitle { max-width: 100%; }
      .hero-actions { justify-content: center; }

      .hero-image {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
        aspect-ratio: 1/1;
      }

      .bullets-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.2);
      }

      .bullet-item { background: var(--primary); border-right: none; }

      .testimonials-grid { grid-template-columns: 1fr; }
      .experts-grid { grid-template-columns: repeat(2, 1fr); }
      .method-feature { grid-template-columns: 1fr; gap: 32px; }
      .method-feature.reverse .method-feature-image { order: -1; }
      .method-feature.reverse .method-feature-content { order: 0; }
      .method-feature-image { order: -1; }
      .pricing-card { padding: 24px; }

      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .section { padding: 64px 0; }

      .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 14px;
      }

      .whatsapp-float-text {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .bullets-inner { grid-template-columns: 1fr; background: var(--primary); }
      .bullet-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
      .bullet-item:last-child { border-bottom: none; }
      .experts-grid { grid-template-columns: 1fr; }
      .ementa-sidebar { padding: 40px 20px; }
      .ementa-sidebar-title { font-size: 20px; }
    }
