
/* ===== IMPORTAÇÃO DE FONTES ===== */
@import url('https://cdn.fonts.com/fonts/averta/stylesheet.css');


/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: 'Averta';
    overflow-x: hidden;
    width: 100%;
}

.date__info{
    color: #e79e55;
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    text-transform: uppercase;
    text-align: start;
}

.site-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER/HERO SECTION ===== */
.header {
    width: 100%;
    position: relative;
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0px;
    width: 130%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-bottom: 1rem;
}

.subtitle {
    font-weight: 300;
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.gradient-line {
    width: min(500px, 80%);
    height: 3px;
    background: linear-gradient(90deg, rgba(222, 138, 59, 1) 0%, rgba(172, 7, 95, 1) 40%, rgba(99, 49, 131, 1) 100%);
    margin-bottom: 2rem;
}

.main-heading {
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 6.9rem);
    line-height: 1;
    letter-spacing: 0;
}

.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 26px;
    background: linear-gradient(270deg, #583591 0%, #930163 40%, #dc9a48 85%);
    z-index: 2;
}

/* ===== SEÇÕES GERAIS ===== */
.section {
    width: 100%;
    padding: 4rem 2rem;
}

/* ===== PRIMEIRA DOBRA (VIVÊNCIAS ALFA) ===== */
.first-fold {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-family: "Averta";
    font-weight: 400;
    color: #78788e;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: center !important;
}

.regular-text {
    font-family: "Averta";
    font-weight: normal;
   
}

.bold-text {
    font-family: "Averta";
    font-weight: bold;
}

.cta-button {
    
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center!important;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    width: 260px;
    height: 120px;
    background-color: #f1a239;
    border-radius: 10px;
    padding: 0 2rem;
    gap: 1.5rem;
    margin-right: 30px;
}

.cta-background {
    display: none; /* Removemos o background absoluto */
}

.cta-text {
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    line-height: 1.1;
    flex: 1;
}

.cta-logo {
    width: 100%;
    max-width: 170px;
    height: auto;
    flex-shrink: 0;
}

/* Responsividade */
@media screen and (max-width: 1440px){
    .logo {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-bottom: 1rem;
    }
    .subtitle {
        font-weight: 300;
        color: #ffffff;
        font-size: clamp(1.2rem, 4vw, 2.3rem);
        margin-bottom: 1rem;
    }
    .main-heading {
        font-weight: 800;
        font-style: italic;
        color: #ffffff;
        font-size: clamp(2.5rem, 8vw, 5.5rem);
        line-height: 1;
        letter-spacing: 0;
    }
    .gradient-line {
        width: min(420px, 80%);
        height: 3px;
        background: linear-gradient(90deg, rgba(222, 138, 59, 1) 0%, rgba(172, 7, 95, 1) 40%, rgba(99, 49, 131, 1) 100%);
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 1400px){
     .main-heading {
        font-size: clamp(2.5rem, 8vw, 5.8rem);
    }
}

@media screen and (max-width: 1366px) {
    .logo {
        width: 100%;
        max-width: 270px;
        height: auto;
        margin-bottom: 1rem;
    }
    .subtitle {
        font-size: clamp(1.2rem, 4vw, 2.1rem);
    }
    .main-heading {
        font-size: clamp(2.5rem, 8vw, 4.8rem);
    }
    .images-column {
        max-width: 550px!important;
    }
    .gradient-line {
        width: min(390px, 80%);
    }
}

@media (max-width: 1024px) {
    .cta-button {
        width: min(544px, 90%);
        height: clamp(80px, 15vw, 112px);
        padding: 0 1.5rem;
        gap: 1rem;
    }
    
    .cta-text {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .cta-logo {
        width: clamp(80px, 15vw, 120px);
    }
}

@media (max-width: 768px) {
    .first-fold {
        gap: 2rem;
    }
    
    .intro-text {
        font-size: 24px;
    }
    
    .cta-button {
        width: min(400px, 90%);
        padding: 0 1rem;
    }
    
    .cta-text {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }
    
    .cta-logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        flex-direction: column;
        height: auto;
        padding: 0.3rem 1rem;
        gap: 1rem;
    }
    
    .cta-text {
        order: 1;
    }
    
    .cta-logo {
        order: 2;
        width: 80px;
    }
}
/* ===== SEGUNDA DOBRA (A INFÂNCIA COMO DEVE SER) ===== */
.second-fold {
    position: relative;
    background-color: #eeeeee;
    text-align: center;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
    z-index: -1;
}

.section-title {
    font-weight: 800;
    font-style: italic;
    color: #78788e;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.section-description {
    font-weight: regular;
    color: #78788e;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.4;
}

.video-container {
    width: min(800px, 90%);
    height: clamp(250px, 56.25vw, 450px); /* Proporção 16:9 */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Remove as classes antigas do botão de play */
.play-button,
.play-icon {
    display: none;
}   

/* ===== TERCEIRA DOBRA (AFETO E APRENDIZADO) ===== */


/* CARROSEL ABAIXO DA IMAGEM */


/* ===== TERCEIRA DOBRA (AFETO E APRENDIZADO) ===== */
/* ===== TERCEIRA DOBRA (AFETO E APRENDIZADO) ===== */
.third-fold {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Coluna da esquerda: Imagem + Carrossel */
.images-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px; /* Mesma largura máxima da imagem */
}

/* Imagem principal */
.carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Container do carrossel abaixo da imagem - MESMA LARGURA */
.carousel-container {
    width: 100%; /* 100% do container pai (800px max) */
    overflow: hidden;
    position: relative;
    
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 10px;
}

.carousel-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    max-width: 150px;
    
}

.arrow {
    position: absolute;
    top: 40%;
    background: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.7;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    opacity: 1;
    background: #555;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Coluna da direita: Texto */
.text-content {
    flex: 1;
    text-align: left;
    max-width: 400px; /* Largura controlada para o texto */
}

.content-title {
    font-weight: 800;
    font-style: italic;
    color: #78788e;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.content-description {
    font-family: "Averta", "Averta-Regular-☞", Helvetica;
    font-weight: normal;
    color: #78788e;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
}

/* Media Queries para o carrossel */
@media (max-width: 600px) {
    .carousel-item img {
        max-width: 160px;
        height: 100px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .carousel-item img {
        max-width: 150px;
        height: 110px;
    }
}

@media (min-width: 901px) {
    .carousel-item img {
        max-width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .third-fold {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .logo {
        width: 100%;
        max-width: 180px;
        height: auto;
    }
    
    .images-column {
        max-width: 100%; /* Largura total em mobile */
    }
    
    .text-content {
        text-align: center;
        max-width: 100%;
    }
    
    .carousel-image {
        height: 250px;
    }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1400px) {
    .images-column {
        max-width: 580px; /* Mantém fixo em telas grandes */
    }
}

/* ===== QUARTA DOBRA (DIFERENCIAIS) ===== */
.fourth-fold {
    position: relative;
    padding: 4rem 2rem;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #c87f39 15%, #a30c59 50%, #3c0b75 100%);
    z-index: -1;
}

.section-heading {
    font-weight: 800;
    font-style: italic;
    color: #efefef;
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 7rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(217, 217, 217, 0.1);
    backdrop-filter: blur(2px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-content {
    padding: 10%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-title{
    font-weight: 800;
    color: #fff;
       font-size: clamp(1rem, 2vw, 1.5rem);
}

.feature-title p{
    font-weight: normal;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.3;
    flex: 1;
}


.feature-description {
    font-family: "Averta-RegularItalic-☞", Helvetica;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.4;
}

/* ===== QUINTA DOBRA (CHAMADA FINAL) ===== */
.fifth-fold {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-weight: 800;
    font-style: italic;
    color: #78788e;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.final-cta-description {
    font-weight: normal;
    color: #78788e;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    margin-bottom: 3rem;
}

.cta-container {
    display: flex;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    width: 100%;
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(136, 7, 126, 1) 0%, rgba(227, 73, 61, 1) 52%, rgba(222, 113, 46, 1) 100%);
    z-index: -1;
}

.footer-logo {
    width: min(305px, 60%);
    height: auto;
    display: block;
    margin: 0 auto 2rem;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-button {
    all: unset;
    cursor: pointer;
    position: relative;
    width: min(304px, 45%);
    height: 59px;
    text-decoration: none;
}

.button-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #797991;
    border-radius: 15px;
}

.button-text {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    text-align: center;
    line-height: 50px;
    display: block;
}

/* ===== MEDIA QUERIES ===== */

/* Tablets */
@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }
    
    .third-fold {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .carousel-image {
        flex: 1;
        margin: 0;
    }
    
    .text-content {
        flex: 1;
        text-align: left;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
}


.botoes{
    padding-top: 50px;
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content {
        padding: 4rem 2rem;
    }
    
    .first-fold {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .intro-text {
        flex: 1;
        text-align: left;
    }
    
    .cta-button {
        flex-shrink: 0;
    }
}

/* Mobile pequeno */
@media (max-width: 767px) {
    .section {
        padding: 2rem 1rem;
    }
    .section-galeria{
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
    }
    
    .footer-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-button {
        width: min(304px, 90%);
    }
    
    .cta-button {
        flex-direction: column;
        height: auto;
    }
    
    .cta-background {
        width: 100%;
        height: 60px;
    }
    
    .cta-text {
        padding: 0.5rem;
        display: flex;
        align-items: center;
    }
    
    .cta-logo {
        position: relative;
        width: 100%;
        height: auto;
    }

    .hero-image {
        width: 120%;
        object-position: 30% center; /* Ajusta mais para a direita */
    }

    .gradient-line {
    width: min(230px, 80%);
    height: 3px;
    background: linear-gradient(270deg, rgba(222, 138, 59, 1) 0%, rgba(172, 7, 95, 1) 50%, rgba(99, 49, 131, 1) 100%);
    margin-bottom: 2rem;
}

  
}