/* Estilos para a página Programa Exclusive */

.programa-exclusive-hero {
    background: linear-gradient(180deg, #f9fcff 0%, #f5fbff 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programa-exclusive-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.programa-exclusive-hero .hero-tag {
    display: block;
    background: #0070e0;
    color: #fff;
    margin: 0 auto 25px;
    width: fit-content;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 112, 224, 0.2);
    transition: all 0.3s ease;
}

.programa-exclusive-hero .hero-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 224, 0.3);
    background: linear-gradient(135deg, #0070e0, #39aeff);
}

.programa-exclusive-hero h1 {
    font-size: 3.2em;
    color: #0a2540;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.programa-exclusive-hero h1 .highlight {
    color: #0070e0;
    font-weight: 700;
}

.programa-exclusive-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0070e0;
    border-radius: 3px;
}

.programa-exclusive-hero p {
    font-size: 1.2em;
    color: #505a68;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.programa-exclusive-hero h1 {
    font-size: 3.2em;
    font-weight: 300;
    color: #0a2540;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.programa-exclusive-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, #00a2ff);
    border-radius: 2px;
}

.programa-exclusive-hero h1 .highlight {
    font-weight: 700;
    color: #0070e0;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0070e0, #00a2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exclusive-details {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.exclusive-details::before,
.exclusive-details::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.exclusive-details::before {
    top: 50px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,112,224,0.03) 0%, rgba(0,112,224,0) 70%);
}

.exclusive-details::after {
    bottom: 20px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,112,224,0.05) 0%, rgba(0,112,224,0) 70%);
}

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

.exclusive-grid {
    display: grid;
    gap: 40px;
    /* Por padrão (mobile-first), uma coluna */
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.exclusive-card {
    background-color: #fff;
    color: #505a68;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,112,224,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.exclusive-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0,112,224,0.03) 0%, rgba(0,112,224,0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exclusive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,112,224,0.15);
    border-color: rgba(0,112,224,0.1);
}

.exclusive-card:hover::before {
    opacity: 1;
}

.exclusive-card h3 {
    font-size: 1.6em;
    margin-bottom: 22px;
    padding-bottom: 12px;
    font-weight: 600;
    color: #0a2540;
    position: relative;
    transition: all 0.3s ease;
}

.exclusive-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0070e0, #00a2ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.exclusive-card:hover h3::after {
    width: 100px;
}

.exclusive-card ul {
    list-style: none;
    padding: 0;
}

.exclusive-card ul li {
    margin-bottom: 16px;
    font-size: 1em;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
    color: #505a68;
    transition: transform 0.3s ease;
}

.exclusive-card ul li:hover {
    transform: translateX(5px);
}

.exclusive-card ul li::before {
    content: '\2022';
    color: #0070e0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0,112,224,0.08);
    transition: all 0.3s ease;
}

.exclusive-card ul li:hover::before {
    background: rgba(0,112,224,0.15);
    transform: scale(1.1);
}

/* Responsividade */

/* Telas médias (tablets) e maiores: layout 2x2 */
@media (min-width: 768px) {
    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr); /* Duas colunas */
    }
    .programa-exclusive-hero h1 {
        font-size: 2.5em;
    }
}

@media (min-width: 992px) {
    .programa-exclusive-hero h1 {
        font-size: 3em; /* Restaura o tamanho maior para desktops grandes */
    }
     .exclusive-card {
        padding: 30px; /* Restaura padding maior para desktops */
    }
    .exclusive-card h3 {
        font-size: 1.5em; /* Restaura tamanho da fonte do título do card */
    }
}

/* Ajustes menores para telas muito pequenas, se necessário */

/* CTA Section - Programa Exclusive */
.cta-exclusive-plan {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-exclusive-plan::before,
.cta-exclusive-plan::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.cta-exclusive-plan::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,112,224,0.05) 0%, rgba(0,112,224,0) 70%);
    top: -80px;
    right: -80px;
}

.cta-exclusive-plan::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,112,224,0.05) 0%, rgba(0,112,224,0) 70%);
    bottom: -70px;
    left: -70px;
}

.cta-exclusive-plan .container {
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 112, 224, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,112,224,0.05);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cta-exclusive-plan .container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,112,224,0.03) 0%, rgba(0,112,224,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.cta-exclusive-plan .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 112, 224, 0.15);
}

.cta-exclusive-plan h2 {
    font-size: 2.4em;
    color: #0a2540;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.cta-exclusive-plan h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, #00a2ff);
    border-radius: 3px;
}

.cta-exclusive-plan p {
    font-size: 1.15em;
    color: #505a68;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-exclusive-plan .btn-lg {
    display: inline-block;
    background: linear-gradient(135deg, #0070e0, #00a2ff);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 112, 224, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.cta-exclusive-plan .btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #005bbf, #0074e8);
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-exclusive-plan .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 112, 224, 0.4);
    color: white;
}

.cta-exclusive-plan .btn-lg:hover::before {
    width: 100%;
}

/* Responsividade para o CTA */
@media (max-width: 768px) {
    .cta-exclusive-plan h2 {
        font-size: 1.8em;
    }
    .cta-exclusive-plan p {
        font-size: 1em;
    }
    .cta-exclusive-plan .btn-lg {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}
@media (max-width: 767px) {
    .programa-exclusive-hero h1 {
        font-size: 2em;
    }
    .exclusive-card {
        padding: 20px;
    }
    .exclusive-card h3 {
        font-size: 1.3em;
    }
}
