:root {
    --bg-dark: #0a0e17; /* Navy/Black */
    --bg-darker: #05070a;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --red: #ff4d4f;
    --text-white: #ffffff;
    --text-gray: #a0a5b0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* UTILIDADES */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 4rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center { text-align: center; }
.highlight { color: var(--gold); font-weight: 700; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2.5rem; }
.text-large { font-size: 1.15rem; }
.d-block { display: block; width: 100%; }

/* BOTÕES */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f3e5ab);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

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

.glow {
    animation: pulseGlow 2s infinite;
}

.glow-small {
    box-shadow: 0 0 15px var(--gold-glow);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 var(--gold-glow); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* HERO SECTION */
/* HERO SECTION */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: url('images/bg-hero-ifb.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10,14,23,0.9) 30%, rgba(10,14,23,0.5) 100%);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hero-top-badge i { color: var(--gold); font-size: 0.9rem; }
.hero-top-badge span { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    max-width: 800px;
    color: #fff;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 1rem;
    border-left: 2px solid rgba(255,255,255,0.1);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-cta-wrapper {
    margin-bottom: 3rem;
}

.hero-cta-wrapper .cta-button {
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.hero-trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.trust-item i { color: var(--gold); font-size: 1rem; }

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.proof-avatars {
    display: flex;
}

.proof-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -15px;
}

.proof-avatars img:first-child { margin-left: 0; }

.proof-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb400;
    font-size: 0.8rem;
}

.stars span {
    color: #fff;
    font-weight: 700;
    margin-left: 5px;
}

.hero-right {
    display: none; /* Hidden on mobile */
}

.quote-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.quote-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212,175,55,0.4), transparent, rgba(212,175,55,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.quote-box i {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.quote-box p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.quote-box strong {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DOR & REVELACAO */
.dor h2, .crenca h2, .revelacao h2, .produto h2, .modulos h2, .transformacao h2, .bio h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.dor-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.revelation-box {
    background: linear-gradient(180deg, rgba(212,175,55,0.1) 0%, transparent 100%);
    border-top: 2px solid var(--gold);
    padding: 2rem;
    border-radius: 8px;
}

.revelation-box h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* CRENCA */
.crenca-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.crenca-list li {
    background: var(--card-bg);
    border: 1px solid var(--gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* PILARES */
.pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pillar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pillar i {
    color: var(--gold);
}

/* PRODUTO */
.badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.title-huge {
    font-size: 2.5rem;
    font-weight: 900;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* MODULOS */
/* MODULOS SLIDER */
.modulos-slider {
    padding-bottom: 3rem !important;
}

.swiper-pagination-bullet {
    background: var(--text-gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    box-shadow: 0 0 10px var(--gold-glow);
}

.modulo-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.modulo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.modulo-card img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensure full image is visible */
    background: #000; /* Fallback background */
    border-bottom: 2px solid var(--gold);
    display: block;
}

.modulo-content {
    padding: 1.5rem;
}

.modulo-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.modulo-content p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* BIO */
.bio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
}

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    flex-shrink: 0;
}

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

.bio-text {
    text-align: center;
}

.bio-text p {
    margin-top: 1rem;
    color: var(--text-gray);
}

/* OBJECOES */
.faq {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-dark);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-gray);
}

.bonus-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--gold);
    padding: 2rem;
    border-radius: 8px;
}

.bonus-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.bonus-list li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 10px;
}

.bonus-list li i {
    color: var(--gold);
    margin-top: 4px;
}

/* OFERTA REDESIGN */
.oferta {
    background: #05070a;
    position: relative;
    overflow: hidden;
}

.oferta-top {
    margin-bottom: 3rem;
}

.oferta-badge-top {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.headline-serif {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.price-card-wrapper {
    margin: 4rem 0;
    perspective: 1000px;
}

.price-card {
    background: rgba(10, 14, 23, 0.6);
    border: 1.5px solid var(--gold);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

.price-card::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.old-price-text {
    display: block;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.por-apenas-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.main-price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #F9E29B, #D4AF37, #B08D26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.acesso-status {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.acesso-status i { color: var(--gold); }

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-item-feat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
}

.trust-item-feat i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.trust-item-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.trust-item-content span {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.alert-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.alert-bar i { color: #f9c23c; font-size: 1.2rem; }
.alert-bar p { font-size: 0.9rem; color: var(--text-gray); }

.cta-button-premium {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.cta-premium-icon {
    background: #1a150a;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-premium-text {
    flex: 1;
    background: linear-gradient(135deg, #D4AF37, #B08D26);
    color: #000;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.cta-premium-text i { font-size: 1.2rem; }

.garantia-footer {
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* TRANSFORMAÇÁO REDESIGN */
.transf-header {
    margin-bottom: 4rem;
}

.transf-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.transf-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-no {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.transf-subtext {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comp-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.comp-col:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.comp-col.negative {
    border-top: 4px solid var(--red);
}

.comp-col.positive {
    border-top: 4px solid var(--gold);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.03), transparent);
}

.col-icon-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.negative .col-icon-main {
    background: rgba(255, 77, 79, 0.1);
    color: var(--red);
}

.positive .col-icon-main {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.comp-col h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.comp-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.item-icon {
    font-size: 1.1rem;
    margin-top: 3px;
}

.negative .item-icon { color: var(--red); opacity: 0.6; }
.positive .item-icon { color: var(--gold); }

.item-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.item-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.comp-footer-neg {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-footer-neg p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem;
    border-radius: 12px;
}

.comp-arrow {
    display: none; /* Only desktop */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.transf-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.transf-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
}

.transf-quote i {
    position: absolute;
    font-size: 3rem;
    opacity: 0.05;
    color: var(--gold);
}

.transf-quote i.fa-quote-left { top: 1rem; left: 1rem; }
.transf-quote i.fa-quote-right { bottom: 1rem; right: 1rem; }

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    font-size: 1rem;
}

/* MEDIA QUERIES (DESKTOP) */
@media (min-width: 768px) {
    .headline { font-size: 4rem; }
    .subheadline { font-size: 1.4rem; }
    .hero-features { grid-template-columns: 1fr 1fr; }
    .hero-main-content { flex-direction: row; align-items: center; justify-content: space-between; gap: 4rem; }
    .hero-left { flex: 1.2; }
    .hero-right { display: block; flex: 0.8; }
    .dor-cards { flex-direction: row; }
    .card { flex: 1; }
    .pillars { flex-direction: row; }
    .pillar { flex: 1; }
    .bio-content { flex-direction: row; text-align: left; padding: 3rem; }
    .bio-text { text-align: left; }
    .faq { display: grid; grid-template-columns: 1fr 1fr; }
    .faq-item:last-child { grid-column: 1 / -1; }
    .price-card { max-width: 550px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin-left: auto; margin-right: auto; }
    .trust-item-feat { margin: 0; }
    .headline-serif { font-size: 3.5rem; }
    .comparison-wrapper { flex-direction: row; align-items: stretch; }
    .comp-col { flex: 1; }
    .comp-arrow { display: flex; }
    .transf-title { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
    .faq { grid-template-columns: repeat(3, 1fr); }
    .faq-item:last-child { grid-column: auto; }
}
