/* Fontes personalizadas */
@font-face {
    font-family: 'Gobold';
    src: url('../fonts/Gobold Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gobold';
    src: url('../fonts/Gobold Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/POPPINS-REGULAR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/POPPINS-BOLD.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/POPPINS-ITALIC.TTF') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/POPPINS-BOLDITALIC.TTF') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #190b3a;
    --bg-dark-2: #020017;
    --purple-primary: #917bff;
    --purple-dark: #190b3a;
    --yellow-highlight: #020017;
    --text-white: #ffffff;
    --text-gray: #b7b7b7;
    --text-dark: #545454;
    --text-darker: #353535;
    --bg-light: #efefef;
    --bg-section: #020017;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-darker);
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-image: url('../images/01.foto.png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    color: var(--text-white);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 11, 58, 0.85);
    z-index: 1;
} */

.hero > * {
    position: relative;
    z-index: 2;
}

.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 3;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 30px;
}

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

.hero-title {
    font-family: 'Gobold', sans-serif;
    font-size: 100px;
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-white);
}

.hero-title .highlight {
    color: var(--purple-primary);
    display: block;
}

.hero-subtitle {
    font-family: 'Gobold', sans-serif;
    font-size: 41px;
    font-weight: normal;
    margin-top: 10px;
    color: var(--text-white);
}

/* Seção PARABÉNS */
.welcome-section {
    background: #020017;
    text-align: center;
    padding: 60px 20px;
}

.welcome-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: normal;
    letter-spacing: 0.2em;
    color: var(--purple-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.welcome-message {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Seção de Aulas */
.lessons-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.lessons-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: var(--purple-dark);
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.lesson-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(145, 123, 255, 0.2);
}

.lesson-number {
    font-family: 'Poppins', sans-serif;
    background-color: #ffff;
    color: var(--purple-dark);
    font-size: 72px;
    font-weight: normal;
    padding: 12px;
    text-align: left;
}

.lesson-title {
    font-family: 'Gobold', sans-serif;
    font-size: 32px;
    color: var(--text-dark);
    padding: 0 20px 15px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.5;
}

.video-container {
    margin: 0;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, #E8D5EA 0%, #F5E6F7 100%);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lesson-description {
    font-family: 'Poppins', sans-serif;
    color: var(--text-darker);
    font-size: 18px;
    line-height: 1.5;
    padding: 20px;
}

/* Seção CTA - Este é apenas o começo */
.cta-section {
    background: #020017;
    padding: 60px 20px;
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
}

.cta-box h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--purple-primary);
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

.cta-box p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    background: var(--purple-primary);
    color: var(--bg-dark-2);
    font-size: 28px;
    font-weight: 800;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(145, 123, 255, 0.4);
    margin-top: 30px;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(145, 123, 255, 0.6);
    background: #a592ff;
}

/* Seção Final */
.final-section {
    text-align: center;
    padding: 60px 20px;
}

.final-encouragement {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-darker);
    font-weight: normal;
    line-height: 1.8;
}

/* Seção Quem é Maira */
.about-section {
    background-color: var(--bg-light);
    padding: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.about-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.about-text h2 {
    font-family: 'Gobold', sans-serif;
    font-size: 49px;
    color: var(--text-darker);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-darker);
}

/* Footer */
.footer {
    background-color: #fff;
    /* color: var(--text-white); */
    padding: 50px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-logos {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    /* opacity: 0.8; */
}

.footer-social {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-social .social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social .social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social .social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1024px) {
    .lessons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .lesson-title {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .welcome-section h2,
    .lessons-section h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .welcome-text,
    .cta-box p,
    .final-encouragement,
    .about-text p {
        font-size: 18px;
    }

    .lesson-number {
        font-size: 60px;
    }

    .lesson-title {
        font-size: 28px;
    }

    .lesson-description {
        font-size: 16px;
    }

    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-button {
        font-size: 20px;
        padding: 15px 30px;
    }

    .about-content {
        flex-direction: column;
        min-height: auto;
    }

    .about-image {
        flex: 0 0 auto;
        min-height: 150px;
    }

    .about-text {
        padding: 40px 20px;
    }

    .about-text h2 {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .welcome-section h2,
    .lessons-section h2,
    .cta-box h2 {
        font-size: 24px;
    }

    .lesson-title {
        font-size: 24px;
    }

    .about-text h2 {
        font-size: 28px;
    }
}
