/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --secondary-purple: #A855F7;
    --primary-teal: #10B981;
    --secondary-teal: #059669;
    --primary-pink: #EC4899;
    --secondary-pink: #BE185D;
    --primary-gold: #F59E0B;
    --secondary-gold: #D97706;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font-family: 'Poppins', sans-serif;
    --container-max-width: 1200px;
    --border-radius: 16px;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 20px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-brand span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.benefit span {
    font-weight: 500;
    color: var(--gray-700);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    position: relative;
}

.sobre-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.credencial {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.credencial i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.credencial span {
    font-weight: 500;
    color: var(--gray-700);
}

/* Manual Section */
.manual {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.manual-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.manual-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.manual-details h3 {
    font-size: 1.8rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.trilhas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trilha {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.trilha-vermelha {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-left: 4px solid #EF4444;
}

.trilha-azul {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-left: 4px solid #3B82F6;
}

.trilha-verde {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    border-left: 4px solid var(--primary-teal);
}

.trilha:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.trilha-icon {
    font-size: 2rem;
    line-height: 1;
}

.trilha-content h4 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.trilha-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.estrategias h4 {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.estrategias ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.estrategias li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
}

.estrategias li i {
    color: var(--primary-teal);
    font-size: 1rem;
}

/* Bônus Section */
.bonus {
    padding: 80px 0;
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.bonus-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bonus-icon i {
    color: var(--white);
    font-size: 2rem;
}

.bonus-item h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus-item h4 {
    color: var(--gray-800);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Depoimento Section */
.depoimento {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: var(--white);
}

.depoimento-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.depoimento-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.depoimento-text blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.depoimento-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px;
    left: -20px;
}

.depoimento-text cite {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.depoimento-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Section - Novo Design */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-teal), var(--primary-pink), var(--primary-gold));
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.cta-header h2 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal), var(--primary-pink));
    border-radius: 20px;
    padding: 3px;
    z-index: -1;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    padding: 1.5rem;
    text-align: center;
}

.discount-badge {
    color: var(--white);
}

.discount-percent {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.discount-text {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2.5rem;
}

/* Price Container */
.price-container {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price {
    margin-bottom: 0.5rem;
}

.old-price .price-label {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.old-price .price-value {
    color: var(--gray-400);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.current-price .price-label {
    color: var(--gray-600);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.price-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 0.8;
}

.price-cents {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.price-installment {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: italic;
}

/* Offer Timer */
.offer-timer {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 2rem;
    color: var(--secondary-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-timer i {
    animation: pulse 1.5s infinite;
}

/* Included Items */
.included-items h4 {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    text-align: left;
}

.included-items h4 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.items-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.item-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item-details {
    flex: 1;
}

.item-details h5 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.item-details span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.item-value {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Bonus Features */
.bonus-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    border-radius: 12px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature i {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.feature span {
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Total Value */
.total-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
}

.total-amount {
    font-size: 1.2rem;
}

/* New CTA Button - Simplificado */
.btn-cta-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: var(--white);
    padding: 2rem 4rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-new::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.6s;
}

.btn-cta-new:hover::before {
    left: 100%;
}

.btn-cta-new:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-teal));
}

.btn-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.btn-text {
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Payment Info */
.payment-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-info i {
    color: var(--primary-teal);
    font-size: 1rem;
}

/* Animação bounce para o ícone */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Guarantee Section */
.guarantee-section {
    margin-bottom: 2rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    border: 2px solid var(--primary-teal);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-badge i {
    color: var(--primary-teal);
    font-size: 2rem;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    color: var(--gray-800);
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.trust-item i {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.trust-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Para Quem É Section */
.para-quem {
    padding: 80px 0;
    background: var(--white);
}

.para-quem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.para-quem-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.para-quem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.para-quem-card.ideal::before {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
}

.para-quem-card.nao-ideal::before {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
}

.para-quem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
}

.para-quem-card.ideal .card-header i {
    color: var(--primary-teal);
}

.para-quem-card.nao-ideal .card-header i {
    color: var(--primary-pink);
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin: 0;
}

.para-quem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.para-quem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.para-quem-list li:last-child {
    margin-bottom: 0;
}

.para-quem-card.ideal .para-quem-list li i {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.para-quem-card.nao-ideal .para-quem-list li i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-100);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    margin: 0;
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-300);
}

.footer-info {
    text-align: right;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .sobre-content,
    .manual-content,
    .depoimento-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .trilhas {
        gap: 1rem;
    }

    .trilha {
        padding: 1rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .para-quem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .para-quem-card {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }

    .pricing-card {
        margin: 0 1rem 2rem;
    }

    .pricing-body {
        padding: 1.5rem;
    }

    .price-main {
        font-size: 3rem;
    }

    .price-cents {
        font-size: 1.5rem;
    }

    .btn-cta-new {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    .btn-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .payment-info {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .bonus-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

    .footer-content {
        text-align: center;
        flex-direction: column;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-header h2 {
        font-size: 2rem;
    }

    .btn-cta-new {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        width: 90%;
        max-width: 350px;
        margin: 0 auto 1.5rem;
    }

    .pricing-card {
        margin: 0 0.5rem 2rem;
    }

    .pricing-body {
        padding: 1.2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animações iniciais controladas via JavaScript */
.hero-text {
    opacity: 1;
    transform: translateY(0);
}

/* Elementos que serão animados via JavaScript - estado inicial */
.section-header,
.sobre-text,
.manual-details,
.depoimento-text,
.cta-content,
.para-quem-card,
.faq-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

/* Elementos específicos que terão animação controlada via JS */
.trilha,
.bonus-item,
.credencial {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevenir flash de conteúdo não estilizado */
.section-header,
.sobre-text,
.manual-details,
.depoimento-text,
.cta-content,
.para-quem-card,
.faq-container,
.trilha,
.bonus-item,
.credencial {
    will-change: opacity, transform;
}

/* Animação suave para estado carregado */
.loaded {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}