﻿/* Subscription Hero Section Styles */
.subscription-hero {
    background: linear-gradient(135deg, #156e59 0%, #1e8973 50%, #3fedca 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.subscription-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.subscription-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Escopo apenas dentro da seção subscription-hero */
.subscription-hero .hero-title {
    color: #ffffff;
    /* Texto normal (Acesse, por apenas) */
}

.subscription-hero .highlight-text {
    color: #60be18;
    /* Verde sólido para +1000 cursos */
    font-weight: 700;
}

.subscription-hero .price-highlight {
    color: #60be18;
    /* Dourado para 12x R$ 99,90 */
    font-weight: 800;
}


.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    `r`n display: inline-flex;
    `r`n align-items: center;
    `r`n gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #f7b731;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Destaque padrão em verde */
.highlight-text {
    color: #11b52f;
    font-weight: 700;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* New benefits section replacing features */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item i {
    color: #20bf6b;
    font-size: 18px;
    flex-shrink: 0;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    color: #2d3436;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 450px;
    margin: 0 auto;
}

.subscription-header {
    text-align: center;
    margin-bottom: 32px;
}

/* Improved pricing layout */


.subscription-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pricing-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.pricing-message .highlight-text {
    font-weight: 700;
}

.recurrence-note {
    font-size: 0.95rem;
    color: #156e59;
    text-align: center;
    margin: 8px 0 0;
    font-weight: 500;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.installments {
    font-size: 20px;
    font-weight: 600;
    color: #636e72;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #156e59;
    line-height: 1;
}

.total-price {
    font-size: 16px;
    color: #636e72;
    font-weight: 500;
}

.btn-subscribe {
    width: 100%;
    background: linear-gradient(135deg, #156e59, #1e8973);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(21, 110, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 110, 89, 0.4);
    background: linear-gradient(135deg, #1e8973, #3fedca);
}

.guarantee-badge {
    `r`n display: flex;
    `r`n align-items: center;
    `r`n justify-content: center;
    `r`n gap: 8px;
    font-size: 14px;
    color: #20bf6b;
    font-weight: 600;
    text-align: center;
}

.courses-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subscription-card {
        margin: 0 20px;
        padding: 32px 24px;
    }

    .price {
        font-size: 2.4rem;
    }

    .installments {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .pricing-main {
        flex-direction: column;
        gap: 4px;
    }

    .installments {
        font-size: 16px;
    }

    .price {
        font-size: 2rem;
    }

    .btn-subscribe {
        font-size: 18px;
        padding: 18px 24px;
    }
}