/* ============================================
   STYLE.CSS - Page Specific Styles
   Método Intestino Livre - Programa de Aceleração
   ============================================ */

/* Body padding for fixed header */
body {
    padding-top: 0;
    padding-bottom: 80px;
    /* Space for sticky CTA on mobile */
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
        padding-bottom: 0;
    }
}

/* ============================================
   HERO SECTION - Modern & Impactful
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-md) 0 0;
    text-align: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-2xl) 0 var(--space-xl);
    }
}

/* Animated gradient mesh overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    animation: meshFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes meshFloat {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05) rotate(1deg);
    }
}

/* Decorative blurred shapes */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatBlob 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__badge {
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__headline {
    max-width: 900px;
    margin: 0 auto var(--space-md);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero__headline {
        font-size: var(--text-5xl);
        line-height: 1.1;
    }
}

.hero__subheadline {
    max-width: 650px;
    margin: 0 auto var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.6;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero__subheadline {
        font-size: var(--text-xl);
    }
}

.hero__highlight {
    display: block;
    margin-top: var(--space-sm);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero .btn {
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

/* ============================================
   PAIN SECTION (A Dor Real) - Modern Glass
   ============================================ */
.pain-section {
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.pain-section__title {
    margin-bottom: var(--space-2xl);
    text-align: center;
    font-size: var(--text-2xl);
}

@media (min-width: 768px) {
    .pain-section__title {
        font-size: var(--text-3xl);
    }
}

.pain-section__intro {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-text-light);
}

.pain-section__list {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.pain-section__conclusion {
    max-width: 650px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--color-bg-glass);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 123, 74, 0.2);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-section__conclusion:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pain-section__conclusion strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   OPTIONS SECTION
   ============================================ */
.options-section {
    background-color: var(--color-bg);
}

.options-section__title {
    margin-bottom: var(--space-xl);
    text-align: center;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background-color: var(--color-bg-alt);
}

.timeline-section__title {
    margin-bottom: var(--space-sm);
    text-align: center;
}

.timeline-section__subtitle {
    margin-bottom: var(--space-2xl);
    text-align: center;
    color: var(--color-text-light);
}

.timeline-section__note {
    max-width: 550px;
    margin: var(--space-2xl) auto 0;
    padding: var(--space-lg);
    text-align: center;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(255, 123, 74, 0.1) 0%, rgba(124, 58, 92, 0.1) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 123, 74, 0.15);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background-color: var(--color-bg);
}

.features-section__title {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

/* ============================================
   BONUS SECTION - Pirâmide Invertida
   ============================================ */
.bonus-section {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    padding: var(--space-3xl) 0;
}

.bonus-section__title {
    text-align: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .bonus-section__title {
        font-size: var(--text-3xl);
    }
}

.bonus-section__subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.bonus-pyramid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 700px;
    margin: 0 auto;
}

.bonus-tier {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bonus-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.bonus-tier__header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

@media (min-width: 768px) {
    .bonus-tier__header {
        flex-direction: row;
        justify-content: space-between;
    }
}

.bonus-tier__badge {
    font-size: var(--text-base);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-tier__label {
    font-size: var(--text-sm);
    font-weight: 600;
    opacity: 0.9;
}

.bonus-tier__content {
    padding: var(--space-lg);
    background: #FFFFFF;
}

.bonus-tier__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.bonus-tier__description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.bonus-tier__item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bonus-tier__item:last-child {
    border-bottom: none;
}

.bonus-tier__item h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.bonus-tier__item p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Tier Colors - Dourado (VIP) */
.bonus-tier--gold .bonus-tier__header {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    color: #1A1A2E;
}

/* Tier Colors - Roxo (Marca) */
.bonus-tier--purple .bonus-tier__header {
    background: var(--gradient-secondary);
    color: #FFFFFF;
}

/* Tier Colors - Laranja (Marca) */
.bonus-tier--orange .bonus-tier__header {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

/* Tier Colors - Verde */
.bonus-tier--green .bonus-tier__header {
    background: var(--gradient-positive);
    color: #FFFFFF;
}

.bonus-section__warning {
    text-align: center;
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text);
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-bg-glass);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    background-color: var(--color-bg-alt);
}

.social-proof-section__title {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.social-proof-section__subtitle {
    max-width: 650px;
    margin: var(--space-2xl) auto 0;
    padding: var(--space-xl);
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg-glass);
    backdrop-filter: blur(var(--blur-sm));
    -webkit-backdrop-filter: blur(var(--blur-sm));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 92, 0.1);
    box-shadow: var(--shadow-lg);
}

.social-proof-section__subtitle strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   EXISTING STUDENTS SECTION
   ============================================ */
.existing-section {
    background: var(--gradient-secondary);
    color: var(--color-text-inverse);
    position: relative;
    overflow: hidden;
}

.existing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.existing-section__title {
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--color-text-inverse);
}

.existing-section__content {
    max-width: 600px;
    margin: 0 auto;
}

.existing-section__intro {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

.existing-section__list {
    margin-bottom: var(--space-lg);
}

.existing-section__list li::before {
    color: var(--color-primary-light);
}

.existing-section__conclusion {
    font-size: var(--text-lg);
    font-style: italic;
    opacity: 0.9;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.pricing-section__title {
    margin-bottom: var(--space-xl);
    text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background-color: var(--color-bg);
}

.faq-section__title {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.faq-section .faq-list {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: var(--text-sm);
}

.footer__logo {
    height: 40px;
    margin: 0 auto var(--space-md);
    opacity: 0.8;
}

.footer__links {
    margin-bottom: var(--space-md);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 var(--space-sm);
}

.footer__links a:hover {
    color: #FFFFFF;
}

.footer__legal {
    font-size: var(--text-xs);
    opacity: 0.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}