.elementor-10 .elementor-element.elementor-element-9988df4{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1cf514b *//* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: #2D2D2D;
      line-height: 1.7;
      overflow-x: hidden;
      background: #FFFFFF;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== VARIABLES ===== */
    :root {
      --dark: #1A1A2E;
      --dark-lighter: #232340;
      --gold: #D4AF37;
      --gold-light: #F5E6B8;
      --gold-hover: #E5C04B;
      --gold-glow: rgba(212, 175, 55, 0.3);
      --white: #FFFFFF;
      --cream: #FDF8EF;
      --light-bg: #F8F6F0;
      --text-dark: #2D2D2D;
      --text-gray: #6B6B6B;
      --text-light: #B0B0B0;
      --red-soft: #C0392B;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.25; }
    h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
    h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
    h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
    p { font-size: clamp(1rem, 1.8vw, 1.125rem); }

    /* ===== UTILITY ===== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
    .text-center { text-align: center; }
    .text-gold { color: var(--gold); }
    .text-white { color: var(--white); }
    .section-padding { padding: 80px 0; }
    .section-padding-lg { padding: 100px 0; }

    /* ===== ANIMATIONS ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.15s; }
    .fade-in-delay-2 { transition-delay: 0.3s; }
    .fade-in-delay-3 { transition-delay: 0.45s; }

    /* Hero and trust badges visible immediately */
    .hero .fade-in,
    .trust-badges .fade-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== CTA BUTTON ===== */
    .cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-hover));
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: clamp(1rem, 2vw, 1.2rem);
      padding: 18px 48px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px var(--gold-glow);
      position: relative;
      overflow: hidden;
    }
    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }
    .cta-btn:hover::before { left: 100%; }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--gold-glow);
    }
    .cta-sub {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-top: 12px;
    }
    .cta-sub-dark {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      margin-top: 12px;
    }

    /* ========================================
       SECTION 1: HERO
    ======================================== */
    .hero {
      min-height: 92vh;
      background-color: var(--dark);
      background-image: url('https://mgx-backend-cdn.metadl.com/generate/images/1076706/2026-03-31/8b6508f4-f6d3-4e4a-9ac5-bc01d2cf3dd5.png');
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 24px;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.88) 100%);
      z-index: 1;
    }
    .hero > * { position: relative; z-index: 2; }
    .hero-logo-wrap {
      width: 120px;
      height: 120px;
      margin: 0 auto 24px;
      border-radius: 50%;
      overflow: hidden;
      filter: drop-shadow(0 0 20px var(--gold-glow));
      animation: floatLogo 4s ease-in-out infinite;
      flex-shrink: 0;
    }
    .hero-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
    }
    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .hero-pretitle {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero h1 {
      color: var(--white);
      margin-bottom: 8px;
    }
    .hero h1 span {
      color: var(--gold);
      font-style: italic;
    }
    .hero-subtitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--gold-light);
      font-style: italic;
      margin-bottom: 12px;
      font-weight: 400;
    }
    .hero-desc {
      max-width: 640px;
      color: rgba(255,255,255,0.8);
      font-size: clamp(0.95rem, 1.5vw, 1.05rem);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .hero .cta-btn { font-size: clamp(0.9rem, 1.8vw, 1.1rem); padding: 20px 52px; }

    /* ========================================
       SECTION 2: TRUST BADGES
    ======================================== */
    .trust-badges {
      background: var(--light-bg);
      padding: 32px 0;
      border-bottom: 1px solid #E8E4DA;
    }
    .badges-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .badge-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-dark);
    }
    .badge-icon {
      width: 40px;
      height: 40px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--dark);
      flex-shrink: 0;
    }

    /* ========================================
       SECTION 3: IDENTIFICATION
    ======================================== */
    .identification { background: var(--white); }
    .identification .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .identification h2 { margin-bottom: 24px; color: var(--dark); }
    .identification p { color: var(--text-gray); margin-bottom: 16px; }
    .identification .emphasis {
      font-weight: 600;
      color: var(--text-dark);
    }
    .blocker-list {
      list-style: none;
      margin: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .blocker-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 1.05rem;
      color: var(--text-dark);
      padding: 14px 20px;
      background: #FFF5F5;
      border-radius: 10px;
      border-left: 4px solid var(--red-soft);
      transition: transform 0.3s ease;
    }
    .blocker-list li:hover { transform: translateX(6px); }
    .blocker-icon {
      color: var(--red-soft);
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .identification .conclusion {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--dark);
      margin-top: 32px;
      padding: 20px;
      background: linear-gradient(135deg, var(--cream), var(--gold-light));
      border-radius: 12px;
      border-left: 4px solid var(--gold);
    }

    /* ========================================
       SECTION 4: MENTOR (Ana Paula)
    ======================================== */
    .mentor { background: var(--cream); }
    .mentor .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .mentor h2 { text-align: center; margin-bottom: 48px; color: var(--dark); }
    .mentor-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: start;
    }
    .mentor-photo-wrapper {
      position: relative;
    }
    .mentor-photo-wrapper::before {
      content: '';
      position: absolute;
      top: -8px; left: -8px;
      width: 100%; height: 100%;
      border: 2px solid var(--gold);
      border-radius: 16px;
      z-index: 0;
    }
    .mentor-photo {
      width: 100%;
      border-radius: 16px;
      position: relative;
      z-index: 1;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      object-fit: cover;
      aspect-ratio: 1;
    }
    .mentor-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .mentor-title {
      font-size: 0.95rem;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 20px;
    }
    .mentor-text p {
      color: var(--text-gray);
      margin-bottom: 14px;
      font-size: 1rem;
    }
    .mentor-quote {
      margin-top: 24px;
      padding: 24px;
      background: var(--white);
      border-left: 4px solid var(--gold);
      border-radius: 0 12px 12px 0;
      font-style: italic;
      color: var(--text-dark);
      font-size: 1rem;
      line-height: 1.8;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }
    .mentor-quote cite {
      display: block;
      margin-top: 12px;
      font-style: normal;
      font-weight: 600;
      color: var(--gold);
      font-size: 0.9rem;
    }
    .mentor-stats {
      margin-top: 20px;
      display: flex;
      gap: 24px;
    }
    .mentor-stat {
      text-align: center;
      padding: 12px 16px;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .mentor-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
    }
    .mentor-stat-label {
      font-size: 0.75rem;
      color: var(--text-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ========================================
       SECTION 5: COST OF NOT PUBLISHING
    ======================================== */
    .cost-section {
      background: var(--dark);
      background-image: url('https://mgx-backend-cdn.metadl.com/generate/images/1076706/2026-03-31/3563186c-b49c-478c-af29-cf62f9141720.png');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
      position: relative;
    }
    .cost-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.95) 100%);
    }
    .cost-section > * { position: relative; z-index: 1; }
    .cost-section h2 {
      color: var(--white);
      margin-bottom: 28px;
    }
    .cost-section h2 span { color: var(--gold); }
    .cost-section p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 18px;
      font-size: 1.05rem;
    }
    .cost-section .highlight-text {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--gold-light);
      padding: 20px 28px;
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 12px;
      background: rgba(212,175,55,0.08);
      margin-top: 28px;
    }

    /* ========================================
       SECTION 6: WHAT YOU RECEIVE
    ======================================== */
    .offer-section { background: var(--white); }
    .offer-section .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .offer-section h2 { text-align: center; margin-bottom: 48px; color: var(--dark); }
    .offer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .offer-card {
      background: var(--cream);
      border: 2px solid var(--gold-light);
      border-radius: 16px;
      padding: 36px 28px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(212,175,55,0.15);
    }
    .offer-card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--gold), var(--gold-hover));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .offer-card h3 { color: var(--dark); margin-bottom: 12px; }
    .offer-card p { color: var(--text-gray); margin-bottom: 20px; font-size: 0.95rem; }
    .offer-card .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .offer-card .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.95rem;
      color: var(--text-dark);
    }
    .check-gold {
      color: var(--gold);
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .offer-card.bonus {
      border-color: var(--gold);
      background: linear-gradient(135deg, var(--cream), rgba(212,175,55,0.08));
      position: relative;
    }
    .offer-card.bonus::before {
      content: '★ BÔNUS ESPECIAL';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--dark);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 6px 20px;
      border-radius: 20px;
    }
    .bonus-value {
      margin-top: 20px;
      padding: 16px;
      background: rgba(212,175,55,0.1);
      border-radius: 10px;
      text-align: center;
    }
    .bonus-value .old-price {
      text-decoration: line-through;
      color: var(--text-gray);
      font-size: 0.95rem;
    }
    .bonus-value .included {
      color: var(--gold);
      font-weight: 700;
      font-size: 1.1rem;
      display: block;
      margin-top: 4px;
    }

    /* ===== COLLECTIONS GRID ===== */
    .collections-note {
      text-align: center;
      margin-top: 32px;
      font-style: italic;
      color: var(--text-gray);
      font-size: 1rem;
    }

    /* ========================================
       SECTION 7: FOR YOU / NOT FOR YOU
    ======================================== */
    .for-you { background: var(--light-bg); }
    .for-you .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .for-you h2 { text-align: center; margin-bottom: 48px; color: var(--dark); }
    .for-you-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .for-you-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .for-you-card h3 {
      margin-bottom: 24px;
      color: var(--dark);
      font-size: 1.3rem;
    }
    .for-you-card h3 .emoji { margin-right: 8px; }
    .for-you-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .for-you-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text-dark);
      line-height: 1.6;
    }
    .for-you-list .icon-yes { color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
    .for-you-list .icon-no { color: var(--red-soft); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

    /* ========================================
       SECTION 8: TESTIMONIALS
    ======================================== */
    .testimonials { background: var(--white); }
    .testimonials .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .testimonials h2 { text-align: center; margin-bottom: 48px; color: var(--dark); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 32px 24px;
      border: 1px solid var(--gold-light);
      transition: transform 0.3s ease;
      position: relative;
    }
    .testimonial-card:hover { transform: translateY(-4px); }
    .testimonial-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--gold-light);
      position: absolute;
      top: 12px;
      left: 20px;
      line-height: 1;
    }
    .testimonial-text {
      font-style: italic;
      color: var(--text-dark);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 20px;
      padding-top: 24px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-hover));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--dark);
      font-weight: 700;
      flex-shrink: 0;
    }
    .testimonial-name {
      font-weight: 600;
      color: var(--dark);
      font-size: 0.9rem;
    }
    .testimonial-role {
      font-size: 0.8rem;
      color: var(--text-gray);
    }

    /* Counter */
    .author-counter {
      text-align: center;
      margin-top: 56px;
      padding: 40px;
      background: linear-gradient(135deg, var(--dark), var(--dark-lighter));
      border-radius: 16px;
    }
    .counter-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .counter-label {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
    }
    .counter-sublabel {
      font-size: 1.2rem;
      color: var(--gold-light);
      font-weight: 600;
      margin-top: 4px;
    }

    /* ========================================
       SECTION 9: PRICING
    ======================================== */
    .pricing { background: var(--cream); }
    .pricing .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .pricing h2 { text-align: center; margin-bottom: 40px; color: var(--dark); }
    .value-table {
      max-width: 600px;
      margin: 0 auto 40px;
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 2px solid var(--gold-light);
    }
    .value-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px;
      border-bottom: 1px solid #F0ECE3;
    }
    .value-row:last-child { border-bottom: none; }
    .value-row .item { font-size: 0.95rem; color: var(--text-dark); }
    .value-row .price { font-weight: 700; color: var(--text-gray); font-size: 0.95rem; }
    .value-row.total {
      background: linear-gradient(135deg, var(--gold), var(--gold-hover));
      padding: 20px 24px;
    }
    .value-row.total .item { color: var(--dark); font-weight: 700; font-size: 1.05rem; }
    .value-row.total .price { color: var(--dark); font-size: 1.05rem; }

    .limited-badge {
      text-align: center;
      margin-bottom: 28px;
    }
    .limited-badge span {
      display: inline-block;
      background: var(--red-soft);
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 24px;
      border-radius: 24px;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
      50% { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
    }

    .price-box {
      max-width: 480px;
      margin: 0 auto;
      background: var(--white);
      border: 3px solid var(--gold);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 8px 40px rgba(212,175,55,0.15);
    }
    .price-box .from {
      font-size: 0.9rem;
      color: var(--text-gray);
      margin-bottom: 4px;
    }
    .price-box .installment {
      font-size: 1rem;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    .price-box .installment-value {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1.1;
    }
    .price-box .installment-value small {
      font-size: 1.4rem;
      vertical-align: super;
    }
    .price-box .full-price {
      font-size: 0.95rem;
      color: var(--text-gray);
      margin-top: 4px;
      margin-bottom: 24px;
    }
    .payment-badges {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .payment-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--text-gray);
      background: var(--light-bg);
      padding: 6px 14px;
      border-radius: 20px;
    }
    .payment-badge svg { width: 16px; height: 16px; }
    .secure-text {
      text-align: center;
      margin-top: 20px;
      font-size: 0.85rem;
      color: var(--text-gray);
    }

    /* ========================================
       SECTION 10: GUARANTEE
    ======================================== */
    .guarantee { background: var(--light-bg); }
    .guarantee-box {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      padding: 48px 36px;
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      border: 1px solid #E8E4DA;
    }
    .guarantee-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--gold), var(--gold-hover));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      margin: 0 auto 20px;
    }
    .guarantee-box h2 { margin-bottom: 16px; color: var(--dark); }
    .guarantee-box p { color: var(--text-gray); font-size: 1.05rem; }
    .guarantee-box .bold-text { font-weight: 600; color: var(--text-dark); }

    /* ========================================
       SECTION 11: FAQ
    ======================================== */
    .faq { background: var(--white); }
    .faq .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .faq h2 { text-align: center; margin-bottom: 48px; color: var(--dark); }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--light-bg);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #E8E4DA;
      transition: border-color 0.3s ease;
    }
    .faq-item.active { border-color: var(--gold); }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-dark);
      transition: color 0.3s ease;
      gap: 16px;
    }
    .faq-question:hover { color: var(--gold); }
    .faq-arrow {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      color: var(--gold);
      flex-shrink: 0;
    }
    .faq-item.active .faq-arrow { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
    }
    .faq-answer-inner {
      padding: 0 24px 20px;
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ========================================
       SECTION 12: FINAL CTA
    ======================================== */
    .final-cta {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 50%);
      animation: rotateGlow 20s linear infinite;
    }
    @keyframes rotateGlow {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .final-cta > * { position: relative; z-index: 1; }
    .final-cta h2 {
      color: var(--white);
      margin-bottom: 28px;
    }
    .final-cta h2 span { color: var(--gold); }
    .final-cta p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
      font-size: 1.05rem;
    }
    .final-cta .emotional-list {
      list-style: none;
      margin: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .final-cta .emotional-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1.05rem;
      color: var(--gold-light);
    }
    .final-cta .emotional-list .icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
    .final-cta .closing-text {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin: 28px 0;
    }

    /* ========================================
       SECTION 13: FOOTER
    ======================================== */
    .footer {
      background: #111126;
      padding: 40px 0;
      text-align: center;
    }
    .footer-logo {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      border-radius: 50%;
      object-fit: contain;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.3s ease;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }
    .footer-contact {
      margin-top: 12px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 768px) {
      .section-padding { padding: 60px 0; }
      .section-padding-lg { padding: 70px 0; }
      .hero { min-height: 100vh; padding: 60px 20px; }
      .hero-logo-wrap { width: 90px; height: 90px; }
      .mentor-grid { grid-template-columns: 1fr; }
      .mentor-photo { max-width: 280px; margin: 0 auto; }
      .mentor-photo-wrapper { max-width: 280px; margin: 0 auto; }
      .mentor-stats { justify-content: center; }
      .offer-grid { grid-template-columns: 1fr; }
      .for-you-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .badges-grid { gap: 20px; }
      .badge-item { font-size: 0.8rem; }
      .cta-btn { padding: 16px 32px; font-size: 0.9rem; }
      .price-box { padding: 32px 20px; }
      .price-box .installment-value { font-size: 2.6rem; }
      .guarantee-box { padding: 32px 20px; }
    }
    @media (max-width: 480px) {
      .badges-grid { flex-direction: column; align-items: center; gap: 12px; }
      .mentor-stats { flex-direction: column; align-items: center; }
      .payment-badges { flex-direction: column; align-items: center; }
    }

    .value-row.value-head {
      background: #F4EED5;
    }
    .value-row.value-head .item,
    .value-row.value-head .price {
      color: var(--dark);
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 1px;
    }
    .value-row.total-real {
      background: #F4EED5;
      border-top: 2px solid #D9B54A;
    }
    .value-row.total-real .item,
    .value-row.total-real .price {
      color: var(--dark);
      font-size: 1.05rem;
      font-weight: 800;
    }
    .value-row.total-offer {
      background: var(--dark);
      border-top: 2px solid #D9B54A;
    }
    .value-row.total-offer .item {
      color: var(--white);
      font-size: 1rem;
      font-weight: 800;
    }
    .value-row.total-offer .price {
      color: var(--gold);
      font-size: 1.1rem;
      font-weight: 800;
    }
    @media (max-width: 768px) {
      .value-row.value-head .item,
      .value-row.value-head .price,
      .value-row.total-real .item,
      .value-row.total-real .price,
      .value-row.total-offer .item,
      .value-row.total-offer .price {
        font-size: 0.95rem;
      }
      .value-row {
        padding: 15px 16px;
      }
      .value-row .item {
        padding-right: 10px;
      }
    }


    /* ===== FINAL MOBILE FIXES ===== */
    @media (max-width: 768px) {
      .trust-badges {
        padding: 24px 0 28px;
      }
      .badges-grid {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
        width: fit-content;
        margin: 0 auto;
      }
      .badge-item {
        width: auto;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        text-align: left;
      }
      .badge-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
      }
      .badge-item span {
        font-size: 0.98rem;
        line-height: 1.3;
        white-space: nowrap;
      }

      /* Keep R$ on the same line before the price */
      .price-box .installment-value {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 6px;
        white-space: nowrap;
        font-size: 2.7rem;
      }
      .price-box .installment-value small {
        font-size: 1.15rem;
        vertical-align: baseline;
        display: inline;
      }
    }

    @media (max-width: 480px) {
      .badges-grid {
        gap: 14px;
      }
      .badge-item {
        gap: 12px;
      }
      .badge-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
      }
      .badge-item span {
        font-size: 0.95rem;
      }
      .price-box .installment-value {
        font-size: 2.4rem;
        gap: 5px;
      }
      .price-box .installment-value small {
        font-size: 1.05rem;
      }
    }

  
/* FOTO ANA PAULA FULL VISÍVEL BONITA */
.ei-mentor__photo, .mentor-photo{
  width:100%;
  max-width:520px;
  height:auto;
  max-height:520px;
  object-fit:contain;
  display:block;
  margin:0 auto;
  border-radius:24px;
  background:#f4f4f4;
}


/* AJUSTE PREMIUM DA FOTO */
.ei-mentor__photo, .mentor-photo{
  filter: brightness(1.03) contrast(1.05) saturate(1.04);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}


/* FIX ICONES SUMINDO */
.icon-circle i,
.icon-circle svg{
  color:#1a1a1a !important;
  fill:#1a1a1a !important;
}


/* FIX DEFINITIVO DOS ÍCONES */
.badge-icon{
  color:#1A1A2E !important;
  -webkit-text-fill-color:#1A1A2E !important;
  text-shadow:none !important;
}
.badge-icon svg,
.badge-icon i{
  color:#1A1A2E !important;
  fill:#1A1A2E !important;
  stroke:#1A1A2E !important;
}


/* ===== OTIMIZAÇÃO FINAL ===== */
.badge-icon{
  background: var(--gold) !important;
  color:#FFFFFF !important;
  -webkit-text-fill-color:#FFFFFF !important;
  text-shadow:none !important;
}
.badge-icon svg,
.badge-icon i{
  color:#FFFFFF !important;
  fill:#FFFFFF !important;
  stroke:#FFFFFF !important;
}
.hero-logo-wrap{
  width:120px;
  height:120px;
  margin:0 auto 24px;
  border-radius:50%;
  overflow:hidden;
  filter: drop-shadow(0 0 20px var(--gold-glow));
  animation: floatLogo 4s ease-in-out infinite;
  flex-shrink:0;
}
.hero-logo{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block;
  border-radius:50% !important;
}
@media (max-width:768px){
  .hero-logo-wrap{
    width:90px;
    height:90px;
  }
}


/* FIX DEFINITIVO DOS ÍCONES */
.badge-icon{
  background: #1A1A2E !important;
  color:#FFFFFF !important;
  -webkit-text-fill-color:#FFFFFF !important;
  text-shadow:none !important;
  border: 2px solid #D4AF37 !important;
}
.badge-icon svg,
.badge-icon i{
  color:#FFFFFF !important;
  fill:#FFFFFF !important;
  stroke:#FFFFFF !important;
}/* End custom CSS */