/* =========================================================================
   VARIÁVEIS CSS
   ========================================================================= */
:root {
    --green-primary: #7bb661;
    --green-dark: #6B9447;
    --orange: #FF6B35;
    --pink: #FF4D8F;
    --black: #0a0a0a;
    --white: #FFFFFF;
}

/* =========================================================================
   RESET E ESTILOS BASE
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--green-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================================================
   TÍTULOS DE SEÇÃO - PADRONIZAÇÃO
   ========================================================================= */
.section-title,
.benefits-title,
.intro-title,
.episodes-text h2,
.cta-section-1 h2,
.cta-section-2 h2,
.event-title {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0px;
}

/* =========================================================================
   UTILITÁRIOS
   ========================================================================= */
.container-fluid {
    width: 90%;
}

.padding-cdi {
    padding-top: 40px;
    padding-bottom: 0;
}

img.oferta-cdi {
    margin-left: 3%;
}

.benefits-swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow-y: visible;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
    background-color: var(--green-primary);
    padding: 20px 0;
    border-bottom: 2px solid var(--black);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero-section {
    background-color: var(--green-primary);
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    flex: 0 0 58%;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.hero-right {
    flex: 0 0 42%;
    position: relative;
    z-index: 2;
    padding-right: 70px;
}

.hero-right h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-right p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-right img {
    max-width: 100%;
    height: auto;
}

/* =========================================================================
   CTA BUTTON
   ========================================================================= */
.cta-button {
    background-image: url(images/cta-texture.jpg);
    display: inline-block;
    text-align: center;
    line-height: 1.3;
    background-size: auto;
    background-position: center;
    color: var(--black);
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 300px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,.05) 2px,
            rgba(255,255,255,.05) 4px
        );
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =========================================================================
   INTRO SECTION
   ========================================================================= */
.intro-section {
    background-color: var(--green-primary);
}

.intro-box {
    background-color: transparent;
    border: 3px solid var(--black);
    border-radius: 30px;
    padding: 60px 60px 40px;
}

.intro-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    margin-top: -14px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.intro-text strong {
    font-weight: 900;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.intro-list li {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 30px;
    position: relative;
}

.intro-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* =========================================================================
   CTA SECTION 1
   ========================================================================= */
.cta-section-1 {
    background-color: var(--green-primary);
    text-align: center;
}

.cta-section-1 h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.cta-section-1 p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

/* =========================================================================
   EPISODES CAROUSEL
   ========================================================================= */
.episodes-section {
    background-color: var(--green-primary);
}

.episodes-wrapper {
    border: 2px solid var(--black);
    border-radius: 30px;
    padding: 45px 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background-color: transparent;
}

.episodes-text {
    padding-right: 20px;
}

.episodes-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.episodes-text p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--black);
}

.episodes-navigation {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

.episodes-nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-weight: 700;
}

.episodes-nav-btn:hover {
    background-color: var(--green-dark);
}

.episodes-carousel {
    overflow: hidden;
}

.episodes-swiper {
    overflow: visible;
}

.episode-card {
    border: 2px solid var(--black);
    border-radius: 20px;
    padding: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 490px;
}

.episode-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.episode-number {
    font-family: 'Antonio', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 20px 0 5px 0;
}

.episode-title {
    font-family: 'Antonio', sans-serif;
    font-size: 1.9rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.2;
}

.episode-description {
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--black);
    margin: 0 20px;
}

/* =========================================================================
   SWIPER CUSTOM NAVIGATION
   ========================================================================= */
.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
    background-color: var(--green-dark);
    transform: scale(1.1);
}

/* =========================================================================
   BENEFITS CAROUSEL
   ========================================================================= */
.benefits-section {
    background-color: var(--green-primary);
}

.benefits-swiper {
    overflow-y: visible !important;
    padding-top: 80px;
    padding-bottom: 15px;
}

.benefit-card {
    border: 2px solid var(--black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    overflow: visible;
    height: 430px;
}

.benefit-image {
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
    margin-top: -90px;
}

.benefit-title {
    font-family: 'Antonio', sans-serif;
    font-size: 1.9rem;
    margin: 0 0 3px 0;
    font-weight: 700;
    line-height: 1.2;
}

.benefit-description {
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--black);
    margin: 0 20px;
}

.benefits-navigation {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

/* =========================================================================
   EVENT BANNER
   ========================================================================= */
.event-banner {
    background-color: var(--green-primary);
}

.event-wrapper {
    background-image: url('images/aniversario-bg.jpg');
    background-color: #0d6cd3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 50px 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.event-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    z-index: -1;
}

.cta-aniversario {
    margin-top: -5px;
}

.event-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.event-right {
    color: var(--white);
    text-align: left;
}

.event-title {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.event-info {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.event-info strong {
    font-weight: 900;
}

/* =========================================================================
   DISCOUNTS CAROUSEL
   ========================================================================= */
.discounts-section {
    background-color: var(--green-primary);
}

.discount-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    height: 420px;
}

.discount-image {
    width: 100%;
    height: 200px;
    background-color: #E5E5E5;
    border-radius: 15px;
    margin-bottom: 20px;
    object-fit: cover;
}

.discount-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.discount-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0;
    line-height: 3rem;
}

.ate {
    margin-top: -16px !important;
}

.discount-navigation {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    margin-top: 25px;
}

/* =========================================================================
   CTA SECTION 2
   ========================================================================= */
.cta-section-2 {
    background-color: var(--green-primary);
    text-align: center;
}

/* =========================================================================
   LEGAL SECTION
   ========================================================================= */
.legal-section {
    background-color: var(--green-primary);
    padding: 60px 0;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.legal-content p {
    font-size: 0.8rem;
    line-height: 1rem;
    color: var(--black);
    font-weight: 400;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
div#copyrights {
    background: #000;
}

#copyrights {
    padding: 50px 0;
    font-size: 0.875rem;
    line-height: 1.8;
}

footer p {
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
}

p.fone {
    margin: 0 0 6px;
    font-size: 20px;
}

footer h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 40px;
    line-height: 22px;
}

.icon-social {
    margin-right: 15px;
}

p.legal {
    font-size: 13px;
    line-height: 16px !important;
    margin-top: 35px !important;
    width: 70%;
}

.social-icons {
    margin-bottom: 40px;
}

.chat a {
    color: #ffffff;
}

/* =========================================================================
   FIXED BANNER
   ========================================================================= */
.fixed-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 360px;
    padding: 4px;
    background-color: #0a0a0a;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.fixed-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* =========================================================================
   MEDIA QUERIES - RESPONSIVIDADE
   ========================================================================= */

/* TABLETS - 1200px */
@media (max-width: 1200px) {
    .episodes-wrapper {
        grid-template-columns: 1fr auto 1.5fr;
        padding: 50px 40px;
        gap: 30px;
    }

    .episodes-text h2 {
        font-size: 1.8rem;
    }

    .event-wrapper {
        padding: 50px 60px;
        gap: 40px;
    }
}

/* TABLETS - 992px */
@media (max-width: 992px) {
    
.section-title, .benefits-title, .intro-title, .episodes-text h2, .cta-section-1 h2, .cta-section-2 h2, .event-title {
    font-size: clamp(2.5rem, 4vw, 3rem);

}    
    
    .hero-content {
        flex-direction: column;
    }

    .hero-badge {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
        font-size: 0.8rem;
        padding: 20px;
    }

    .intro-box {
        padding: 40px 30px;
    }

    .intro-list {
        margin-top: 30px;
    }

    .episodes-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
        padding: 40px 30px;
    }

    .episodes-text {
        padding-right: 0;
        text-align: center;
    }


    .episodes-navigation {
        flex-direction: row;
        justify-content: center;
    }

    .episodes-carousel {
        width: 100%;
    }

    .event-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 40px;
        width: 95%;
    }

    .event-left {
        order: -1;
    }

    .event-right {
        text-align: center;
    }

    .event-image {
        max-width: 400px;
    }

    .fixed-banner {
        width: 300px;
        right: 15px;
        bottom: 15px;
    }
}

/* MOBILE - 768px */
@media (max-width: 768px) {
    
.header {
    padding: 12px 0;
}    

.header-content {
    justify-content: center;
    flex-direction: row;
    gap: 45px;
    display: flex;
}
    
    
    .folha-logo {
        max-width: 40%;
    }
    
    .series-folha-logo {
        width: 40%;
    }    
    
    

    .hero-section {
        padding: 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 7px;
        padding: 0 15px;
    }

.hero-left, .hero-right {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
 }
    
.hero-right {
    flex: 0 0 42%;
    position: relative;
    z-index: 2;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
}   
    
.hero-right p {
    margin-bottom: 0;
    margin-top: 14px;
}   
    
.hero-right h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

    .hero-image {
        border-radius: 15px;
    }

.intro-box {
    padding: 40px 30px;
}
    
    
.intro-section {
    background-color: var(--green-primary);
    padding: 20px 10px 0;
}
    
.intro-title {
    margin-bottom: 20px;
}    
    
.intro-list li {
    margin-bottom: 15px;
}    
    

    .cta-button {
        font-size: 1.2rem;
        padding: 25px 40px;
    }
    
    
.cta-section-1 p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}   
    
    
    
.episode-card {
    height: 455px;
}    
    
    

.episodes-section {
    padding: 30px 0;
}

.episodes-wrapper {
    padding: 30px 20px 0;
    border-radius: 20px;
}

.episodes-text h2 {
    font-size: 2.5rem;
}

    .episodes-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .episode-image {
        height: 180px;
    }
    
    
.benefits-section {
    padding: 0 20px;
}    
    
.benefit-card {
    height: 388px;
}    

.event-banner {
    padding: 60px 0 0;
}

    .event-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
        width: 95%;
    }

    .event-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .event-info {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .event-image {
        max-width: 100%;
    }
    
.discounts-section {
    padding: 40px 15px 0;
}    

    .legal-section {
        padding: 40px 0;
    }

    .legal-content {
        padding: 0 20px;
    }

    .legal-content p {
        font-size: 0.8rem;
        line-height: 1.6;
        text-align: left;
    }

    .fixed-banner {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

#copyrights {
    padding: 50px 20px;
    font-size: 0.875rem;
    line-height: 1.8;
}
}
