/* style.css */

/* Reset Básico e Variáveis */
:root {
    --color-black: #0a0a0a;
    --color-white: #f5f5f5;
    --color-gray: #555;
    --color-light-gray: #ccc;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-family);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* style.css */

/* ... (código anterior) ... */

/* Seção Hero - Ajustes para maior respiro na tela */
.hero {
 min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Essencial para o posicionamento do overlay */
    z-index: 0;

    /* Propriedades da Imagem de Fundo */
    background-image: none;
}

.hero__background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2; /* Posiciona o vídeo bem no fundo */
    object-fit: cover; /* Garante que o vídeo preencha a tela sem distorcer */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay preto com 70% de opacidade */
    z-index: -1; /* Fica acima do vídeo, mas abaixo do conteúdo */
}


.hero__content-wrapper {
    display: flex;
    flex-direction: row; /* PADRÃO: Layout em linha para desktop */
    align-items: center; 
    justify-content: space-between;
    gap: 4rem; /* Espaçamento entre o bloco de texto e a imagem */
    width: 100%;
    max-width: 1200px;
    padding: 0 4rem; /* Aumenta o padding horizontal para afastar das bordas */
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 1; 
    max-width: 900px; /* Aumenta um pouco mais o max-width para a headline */
    text-align: left; /* Garante que o texto se alinhe à esquerda */
}

.hero__heading {
    font-size: 20x; 
    line-height: 1.1;
    font-weight: 800; /* Aumenta o negrito para 'extra-bold' ou 'black' */
    margin: 0 0 1.5rem; /* Aumenta o espaçamento abaixo da headline */
    text-transform: uppercase;
}

.hero__description {
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--color-light-gray);
    margin: 0 0 2rem; /* Aumenta o espaçamento abaixo da descrição para o botão */
}

.hero__heading .highlight {
    background: linear-gradient(90deg, #d3d3d3, #808080);
    color: var(--color-black); /* Altera a cor do texto para preto para melhor contraste */
    padding: 0 0.5rem; /* Espaçamento interno */
    line-height: 1.5; /* Ajuste para não cortar o texto */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;;
}



.button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    border-radius: 5px; 
    /* Remove a transição de cor do hover para evitar conflitos */
    /* transition: color 0.3s ease, background-color 0.3s ease; */
}
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%; /* Inicia um pouco antes do lado esquerdo */
    width: 50%; /* A luz terá metade da largura do botão */
    height: 100%; /* Ocupa a altura total do botão */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg); /* Dá um ângulo para a "luz", como um reflexo */
    z-index: -1;
    animation: shine 2.5s linear infinite; /* Aumentei a duração para um movimento mais suave */
}

.button:hover::before {
    left: 100%; /* Move o elemento para a direita, criando o efeito de luz */
}

/* Efeito de background no hover, como um adicional */
.button:hover {
    background-color: rgba(255, 255, 255, 0.05); /* Fundo sutil ao passar o mouse */
    color: var(--color-white);
}


@keyframes shine {
    from {
        left: -150%;
    }
    to {
        left: 150%;
    }
}

/* Container e Imagem - Replicando o aspecto vertical da referência */
.hero__image-container {
    flex: none; /* Não permite que este item cresça ou diminua automaticamente */
    width: calc(595px * var(--scale, 1));
    height: calc(756px * var(--scale, 1));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Para posicionar a imagem dentro, se necessário */
    overflow: hidden; /* Garante que nada saia do container */
}

.hero__main-image {
    width: 100%; /* A imagem preenche o container */
    height: 100%; /* A imagem preenche o container */
    object-fit: contain; /* Garante que a imagem se ajuste sem cortar ou esticar. Use 'cover' se quiser preencher e cortar */
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    /* Se a imagem for transparente, podemos adicionar um gradiente de fundo ao container */
    /* background: radial-gradient(circle at center, rgba(30, 30, 30, 0.5) 0%, transparent 70%); */
}


@media (max-width: 768px) {
    .hero__content-wrapper {
        flex-direction: column; 
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero__content {
        order: 1; /* O conteúdo principal (headline, botão) vem PRIMEIRO */
        max-width: 100%;
        margin-bottom: 2rem; /* Adiciona espaçamento entre o conteúdo e a imagem */
    }

    .hero__image-container {
        order: 2; /* A imagem vem DEPOIS do conteúdo (headline, etc.) */
        width: 100%;
        height: auto;
        max-width: 80%;
    }
    
    .hero__heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }

}

.footer-cta {
    background-color: var(--color-black);
    padding: 1rem 0;
    
    position: absolute; /* Agora a posição é relativa ao container pai (.hero) */
    bottom: 0;
    left: 0; /* Garante que ele ocupe toda a largura */
    right: 0; /* Garante que ele ocupe toda a largura */
    
    overflow: hidden; 
    z-index: 100;
    /* border-top: 1px solid #1a1a1a; */
       border-top: 1px solid var(--color-white); 
       border-bottom: 1px solid var(--color-white)
}


.footer-cta__inner {
    display: flex;
    width: max-content; 
    animation: scroll-right-to-left 30s linear infinite; /* Novo nome da animação */
    padding-left: 100vw; /* CRUCIAL: Faz o texto começar fora da tela à direita */
}

.footer-cta__item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gray);
    margin-right: 2rem;
    padding: 0 1rem;
    display: inline-block;
}

@keyframes scroll-right-to-left {
    from {
        transform: translateX(10); 
    }
    to {
        transform: translateX(-50%); 
    }
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg); /* Um ângulo um pouco mais suave */
    z-index: -1;
    animation: shine-footer 5s linear infinite; /* Animação própria para o rodapé */
}

@keyframes shine-footer {
    from {
        left: -150%;
    }
    to {
        left: 150%;
    }
}
/* Responsividade */
@media (max-width: 768px) {
    .hero__content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero__image-container {
        order: 2;
    }

    .hero__content {
        order: 2;
        max-width: 100%;
    }
}

/* style.css */

/* ... (código anterior) ... */

/* Seção do Carrossel */
.carousel-section {
    padding: 6rem 0;
    position: relative;
    z-index: 0;

    /* Propriedades da Imagem de Fundo */
    background-image: url('../img/fundo-carrossel.png'); /* Ajuste o caminho da imagem */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay preto com 70% de opacidade */
    z-index: 1; 
}

.carousel-header,
.carousel-container,
.carousel-cta-container {
    position: relative;
    z-index: 2; /* Conteúdo principal acima do overlay */
}

.carousel-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-light-gray);
    font-weight: 300;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 550px; /* Altura do carrossel */
}

.carousel-slide {
    position: absolute;
    width: 300px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0.5;
    z-index: 1;
    transform: translateX(0) scale(0.8) blur(5px);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0) scale(1) blur(0);
}

.slide-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slide-text-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1rem 0;
}

.slide-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.slide-description {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    font-weight: 300;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Botão CTA */
.carousel-cta-container {
    text-align: center;
    margin-top: 4rem;
}

.carousel-cta {
    /* Manter o estilo do botão que já criamos */
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Efeito de brilho do botão */
.carousel-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg);
    z-index: -1;
    animation: shine 2.5s linear infinite;
}

.carousel-cta:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

/* Animação para o brilho do botão, se ainda não estiver no CSS */
@keyframes shine {
    from {
        left: -150%;
    }
    to {
        left: 150%;
    }
}

/*  */

/* style.css */

/* ... (código anterior) ... */

/* Seção de Depoimentos */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-white);
    color: var(--color-black);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    border: 1px solid var(--color-black);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimonials-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 4rem;
}

.testimonials-slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    cursor: grab;
}

.testimonial-card {
    min-width: 320px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-yellow-green);
}

.stars svg {
    fill: var(--color-yellow-green);
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* Botões de Navegação */
.carousel-btn.prev-btn-testimonials,
.carousel-btn.next-btn-testimonials {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn.prev-btn-testimonials {
    left: 1rem;
}

.carousel-btn.next-btn-testimonials {
    right: 1rem;
}

/* Bolinhas de navegação */
.carousel-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gray);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    width: 20px;
    border-radius: 5px;
    background-color: var(--color-yellow-green);
}

/* Seção de Áudio e Play Button */
.audio-section {
    text-align: center;
    margin-top: 6rem;
}

.audio-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.audio-subtitle {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 300;
}

.audio-player {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
}

.wave-line {
    width: 3px;
    height: 15px;
    background-color: var(--color-yellow-green);
    border-radius: 5px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-line:nth-child(2) { animation-delay: 0.1s; }
.wave-line:nth-child(3) { animation-delay: 0.2s; }
.wave-line:nth-child(4) { animation-delay: 0.3s; }
.wave-line:nth-child(5) { animation-delay: 0.4s; }
.wave-line:nth-child(6) { animation-delay: 0.5s; }
.wave-line:nth-child(8) { animation-delay: 0.5s; }
.wave-line:nth-child(9) { animation-delay: 0.4s; }
.wave-line:nth-child(10) { animation-delay: 0.3s; }
.wave-line:nth-child(11) { animation-delay: 0.2s; }
.wave-line:nth-child(12) { animation-delay: 0.1s; }

.play-button {
    background: linear-gradient(135deg, var(--color-yellow-green), var(--color-blue-light));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 255, 127, 0.3);
    transition: transform 0.3s ease;
    margin: 0 1rem;
}

.play-button:hover {
    transform: scale(1.1);
}

@keyframes wave {
    0%, 100% { height: 15px; }
    50% { height: 30px; }
}

/*  */

/* style.css */

/* ... (código anterior) ... */

/* Variáveis para cores neon */
:root {
    --color-neon-blue: #00e0ff;
    --color-neon-green: #00ff8c;
}

/* style.css */

/* ... (código anterior) ... */

/* Seção de Calendário e Texto */
.calendar-section {
    padding: 8rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.calendar__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.calendar__visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Fundo sutil */
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.calendar__visuals::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--color-light-gray), var(--color-white));
    filter: blur(20px);
    z-index: 0;
    opacity: 0.2;
}

.calendar__container {
    position: relative;
    z-index: 1;
    width: 300px;
    font-family: 'Poppins', sans-serif;
}

.calendar__days-of-week, .calendar__days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.calendar__days-of-week span {
    color: var(--color-gray);
    font-size: 0.8rem;
}

.calendar__days-grid span {
    color: var(--color-white);
    padding: 0.75rem 0;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.calendar__days-grid span.highlight-day {
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
}

.calendar__graph {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 2rem;
    position: relative;
}

.bar {
    height: 100%;
    border-radius: 5px;
}

.bar-start {
    width: 20%;
    background: var(--color-light-gray);
    box-shadow: 0 0 10px var(--color-light-gray);
}

.bar-end {
    width: 80%;
    background: var(--color-white);
    box-shadow: 0 0 10px var(--color-white);
}

.calendar__content {
    flex: 1;
    max-width: 500px;
}

.section-tag-small {
    font-size: 0.8rem;
    color: var(--color-white);
    letter-spacing: 0.1rem;
}

.calendar__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--color-white);
}

.calendar__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin-top: 1.5rem;
}

.button-neon {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(45deg, var(--color-neon-blue), var(--color-neon-green));
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 15px var(--color-neon-blue), 0 0 30px var(--color-neon-green);
    transition: transform 0.3s ease;
    margin-top: 2.5rem;
}

.button-neon:hover {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .calendar__wrapper {
        flex-direction: column;
        text-align: center;
    }
    .calendar__content {
        order: 2;
        margin-top: 2rem;
    }
    .calendar__visuals {
        order: 1;
    }
    .button-neon {
        width: 100%;
    }
}

.video-carousel-section {
    padding: 6rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
}

.video-carousel-section .section-title,
.video-carousel-section .section-subtitle {
    margin-bottom: 2rem;
}

.video-carousel-wrapper {
    position: relative;
    max-width: 900px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-carousel-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    width: 300px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.5;
    z-index: 1;
    transform: translateX(0) scale(0.8) blur(5px);
    transition: none; /* A animação GSAP irá controlar o transform */
}

.video-slide.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0) scale(1) blur(0);
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.video-prev-btn {
    left: 0;
}

.video-next-btn {
    right: 0;
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
    .video-carousel-wrapper {
        height: 400px;
    }

    .video-slide {
        width: 250px;
        height: 400px;
    }
}

/* style.css */

/* ... (código anterior) ... */

/* Estilos para o botão de play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slide-video.playing + .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.play-btn svg {
    margin-left: 5px; /* Ajuste para o triângulo de play */
}



/* Seção de FAQ */
.faq-section {
    padding: 6rem 0;
    background-color: var(--color-white); /* Fundo branco */
    color: var(--color-black); /* Cor do texto principal preta */
}

.faq-section .section-title {
    text-align: center;
    color: var(--color-black); /* Título preto */
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-black); /* Fundo dos cards preto */
    color: var(--color-white); /* Texto dos cards branco */
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
    overflow: hidden;
    /* Redefinimos a transição para ser mais confiável e suave */
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; 
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
max-height: 500px; 
    padding: 1.5rem;
    background-color: var(--color-black); /* Fundo da resposta preto */
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}


/* style.css */

/* ... (código anterior) ... */

/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Cor do WhatsApp */
    color: var(--color-white);
    border-radius: 50px;
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E; /* Cor de hover do WhatsApp */
}

.whatsapp-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.whatsapp-btn-text {
    white-space: nowrap;
}

/* Responsividade para o botão */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .whatsapp-icon-wrapper {
        width: 35px;
        height: 35px;
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Seção do Rodapé Principal */
.main-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray);
}

.footer__logo img {
    max-width: 150px;
}

.footer__links,
.footer__contact,
.footer__social {
    flex: 1 1 150px; /* Garante que os blocos se ajustem em telas pequenas */
}

.footer__links h4,
.footer__contact h4,
.footer__social h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__links ul,
.footer__contact ul,
.footer__social ul {
    list-style: none;
    padding: 0;
}

.footer__links ul li,
.footer__contact ul li,
.footer__social ul li {
    margin-bottom: 0.75rem;
}

.footer__links a,
.footer__contact a,
.footer__social a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__contact a:hover,
.footer__social a:hover {
    color: var(--color-white);
}

.footer__bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-gray);
}

.footer__bottom-bar a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom-bar a:hover {
    color: var(--color-white);
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .footer__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer__bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Topo do Site - Barra de Anúncio */
.top-announcement {
    background-color: red; 
    padding: 0.5rem 0;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden; 
    z-index: 9999;
    border-bottom: 1px solid red; 
}

.top-announcement__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: max-content;
    animation: scroll-text-top 30s linear infinite; /* Aumentei a velocidade para 20s */
    transform: translateX(0); /* Ponto de partida inicial */
    white-space: nowrap; /* Impede a quebra de linha */
}

.announcement__item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 2rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
}

/* Animação do scroll do topo */
@keyframes scroll-text-top {
    from {
        transform: translateX(50%); /* Começa do lado direito (fora da tela) */
    }
    to {
        transform: translateX(calc(-100% - 100vw)); /* Move para a esquerda (fora da tela) */
    }
}


/* style.css */

/* ... (código existente) ... */

/* Seção de CTA Banner */
.cta-banner-section {
    background-color: var(--color-black); /* Fundo preto */
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Para garantir que as estrelas e outros efeitos fiquem contidos */

        /* Adicione a imagem de fundo aqui */
    background-image: url('../img/fundo-cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stars-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.star-icon {
    width: 35px;
    height: 35px;
    color: #FFD700; /* Dourado para as estrelas */
    margin: 0 0.2rem;
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Alinha o texto à esquerda */
}

.cta-message {
    flex: 1;
    min-width: 350px;
}

.cta-message h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Título grande e responsivo */
    line-height: 1.2;
    font-weight: 700;
}

.cta-message .highlight-text {
    color: #8f8f8c; /* Cor dourada para o texto de destaque */
}

.cta-description-and-buttons {
    flex: 1;
    min-width: 350px;
}

.cta-description-and-buttons p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; /* Para responsividade */
}

.primary-cta-btn {
    background-color: white; /* Botão primário dourado */
    color: var(--color-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Para o efeito de luz */
    overflow: hidden; /* Para o efeito de luz */
    z-index: 1;
}

.primary-cta-btn:hover {
    background-color: black;
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); */
}

.secondary-cta-btn {
    background-color: var(--color-dark-gray); /* Botão secundário cinza escuro */
    color: var(--color-white);
    border: 1px solid var(--color-gray);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-cta-btn:hover {
    background-color: var(--color-gray);
    transform: translateY(-2px);
}

/* Efeito de luz para o botão primário */
.primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg);
    z-index: -1;
    animation: shine 2.5s linear infinite;
}

/* Animação do brilho (já deve existir) */
@keyframes shine {
    from { left: -75%; }
    to { left: 125%; }
}


/* Responsividade */
@media (max-width: 992px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-message, .cta-description-and-buttons {
        min-width: unset; /* Remove min-width para telas menores */
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    .primary-cta-btn, .secondary-cta-btn {
        width: 100%;
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Seção de Call to Action */
.call-to-action-section {
    padding: 6rem 0;
    background-color: var(--color-white); /* Fundo branco */
    color: var(--color-black);
}

.call-to-action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.cta__image {
    width: 100%;
    height: auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.cta__content-block {
    flex: 1;
    max-width: 600px;
}

.cta__tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.cta__button {
    background-color: var(--color-black); /* Cor do botão */
    color: var(--color-white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta__button:hover {
    background-color: var(--color-gray);
}

/* Responsividade */
@media (max-width: 992px) {
    .call-to-action-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .cta__image-container {
        margin-bottom: 2rem;
    }
}


.workshop-section {
    padding: 6rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: left;
    position: relative; /* CRUCIAL: Define o contexto para o vídeo e overlay */
    overflow: hidden;
}

.workshop__background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1; /* Nível 1: Fica no fundo */
    object-fit: cover;
}

.workshop__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay com 70% de opacidade */
    z-index: 2; /* Nível 2: Acima do vídeo */
}

/* Garante que o conteúdo e os cards fiquem por cima */
.workshop-section .container,
.workshop-grid,
.workshop__bottom-cta {
    position: relative;
    z-index: 3; /* Nível 3: Acima do vídeo e do overlay */
}

.workshop__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; 
    margin-bottom: 4rem;
    text-align: center; /* Centraliza o título principal */
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.workshop__main-title .highlight-text {
    font-weight: 600; /* Apenas a palavra 'Workshop' é mais pesada */
    color: var(--color-white); /* Destaque em branco puro */
}

.workshop-grid {
    display: grid;
    /* Define 2 colunas largas no desktop, como na referência */
    grid-template-columns: repeat(2, minmax(400px, 1fr)); 
    gap: 1.5rem;
    max-width: 1000px; /* Largura ideal para caber 2 cards grandes */
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.workshop-card {
    background-color: var(--color-dark-gray); /* Fundo dos cards cinza escuro */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px; 
    padding: 2.5rem;
    text-align: left;
    position: relative; /* Para posicionar o sublinhado e a borda */
    overflow: hidden;
}

/* Sublinhado superior (o traço que simula o ícone na referência) */
.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem; /* Alinhado ao padding do card */
    width: 35px;
    height: 3px;
    background-color: var(--color-white); /* Cor do traço em branco */
    border-radius: 0 0 5px 5px;
}

/* Ícone - Substituímos pelo elemento de imagem/SVG simples */
.card__icon {
    /* Removido o estilo de círculo, será apenas o SVG/ícone */
    width: auto;
    height: auto;
    margin-bottom: 0;
    color: var(--color-white); /* Cor do ícone */
}

.card__title {
    font-size: 2rem; 
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.card__description {
    font-size: 1rem; /* Ajustado para 1rem para melhor leitura */
    line-height: 1.6;
    color: var(--color-light-gray);
}

/* Linhas de código e ícone inferior da referência */
.workshop__bottom-cta {
    margin-top: 4rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    text-align: right;
    display: flex; /* Para alinhar o código de barras e o botão */
    justify-content: space-between;
    align-items: flex-end;
}

.bottom-cta__visuals {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.code-lines {
    width: 150px;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-vibrant-highlight), /* Fundo das linhas de código */
        var(--color-vibrant-highlight) 3px,
        transparent 3px,
        transparent 6px
    );
    opacity: 0.8;
}

.icon-bottom {
    color: var(--color-light-gray);
}

/* Responsividade: Volta para uma coluna em telas menores */
@media (max-width: 1024px) {
    .workshop-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .workshop__bottom-cta {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
}

.impact-cta-section.final-cta-style {
    position: relative;
    padding: 8rem 0 0;
    min-height: 800px; /* Altura mínima para mostrar o fundo */
    color: var(--color-white);
    background-color: var(--color-black);
}

/* Fundo da Imagem (Para replicar a figura à esquerda) */
.impact-bg-layer.final-bg-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.impact-bg-layer.final-bg-style .impact-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* CRUCIAL: Posiciona o lado esquerdo da imagem no centro da tela */
    background-position: left center;
}

/* Overlay Escuro com Gradiente (Para replicar o escurecimento do lado esquerdo) */
.impact-overlay.final-overlay-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente para escurecer o lado direito e manter o esquerdo mais claro */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

/* Layout dos Blocos Superiores (Texto à Direita) */
.impact-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end; /* CRUCIAL: Empurra o conteúdo para a direita */
    align-items: flex-start;
    padding-top: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact__text-and-cta {
    flex: 0 0 50%; /* Ocupa metade da largura do container */
    text-align: left;
    padding-right: 2rem;
}

.impact__headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-white);
    max-width: 500px; /* Limita a largura do texto para o alinhamento */
}

/* Botão CTA Final (Gradiente e Neon) */
.cta-final-btn {
    background: linear-gradient(90deg, var(--highlight-pink), var(--highlight-blue));
    color: var(--color-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

/* Bloco de Destaque Inferior (Centralizado) */
.bottom-highlight-message.final-style {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 2rem 0 4rem;
    text-align: center;
}

.bottom-highlight-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 400;
}

.highlight-buttons.final-style-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
}

.highlight-btn-item.final-style-btn {
    background: var(--highlight-pink); /* Cor de fundo */
    color: var(--color-white);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.7);
    transition: all 0.3s ease;
}

.secondary-highlight.final-style-btn {
    background: var(--color-black); /* Fundo preto */
    border: 1px solid var(--highlight-pink); /* Borda da cor de destaque */
    box-shadow: none;
}


/* Responsividade para reverter o layout */
@media (max-width: 992px) {
    .impact-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
    }

    .impact__text-and-cta {
        flex: 1;
        padding: 0;
        text-align: center;
    }

    .impact-overlay.final-overlay-style {
        /* Torna o overlay uniforme em mobile */
        background: rgba(0, 0, 0, 0.85); 
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Seção de Cronograma */
.schedule-section {
    padding: 6rem 0;
    background-color: var(--color-white); /* Fundo branco */
    color: var(--color-black);
}

.schedule-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-info {
    flex: 1;
    max-width: 600px;
}

.schedule-date-tag {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.schedule-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-black); /* Título em preto */
}

.schedule-description {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.schedule-observation {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-gray);
}

.schedule-observation span {
    font-weight: 700;
}

/* Bloco de Horários (Contêiner Cinza Claro) */
.schedule-time-box {
    flex: 0 0 400px; /* Largura fixa para o bloco */
    background-color: var(--color-light-gray); /* Cinza claro para o bloco principal */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.time-block {
    background-color: var(--color-black); /* Bloco de tempo em preto (simulando o pink) */
    color: var(--color-white);
    border-radius: 5px;
    padding: 1rem 1.5rem;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.time-main {
    font-size: 1.5rem;
    font-weight: 700;
}

.time-description {
    font-size: 1rem;
    color: var(--color-black);
    text-align: left;
}

/* Responsividade */
@media (max-width: 992px) {
    .schedule-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .schedule-info {
        text-align: left;
        padding: 0 1rem;
    }
    .schedule-time-box {
        width: 90%;
        max-width: 450px;
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Seção de CTA Final de Mercado */
.final-cta-market-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-white); /* Fundo branco */
    color: var(--color-black);
    text-align: center;
    overflow: hidden;
}

/* Imagem de Fundo (Elementos Laterais da Referência) */
.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Imagem que contém os elementos laterais em cinza/bege */
    background-image: url('../img/fundo-titulo.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.2; /* Torna os elementos laterais sutis */
}

.final-cta-wrapper {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima do fundo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    
    /* Destaque para o texto principal */
    color: var(--color-black);
}

.market-data-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.highlight-market-text {
    font-weight: 700;
    color: var(--color-black);
}

/* Botão CTA (Simulando o Bege/Dourado com Cinza Quente) */
.final-cta-button {
    background: linear-gradient(180deg, #b0a394, #a09384); /* Gradiente Cinza Quente/Bege */
    color: var(--color-white);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: linear-gradient(180deg, #a09384, #8f8275);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Estilo do Pré-loader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black); /* Fundo preto da nossa identidade */
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Z-index máximo para cobrir todos os elementos */
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0s 0.5s; /* Transição suave */
    visibility: visible;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

/* Animação do Spinner (Minimalista) */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3); /* Anel cinza sutil */
    border-top-color: var(--color-white); /* Parte animada em branco */
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* style.css */

/* ... (código anterior) ... */

/* Seção de Eventos */
.events-section {
    padding: 6rem 0;
    background-color: var(--color-light-gray); /* Fundo cinza claro para replicar a referência */
    color: var(--color-black);
    text-align: center;
}

.events-header {
    margin-bottom: 3rem;
}

.events-tag {
    font-size: 0.875rem;
    color: var(--color-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.events-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.event-card {
    display: flex;
    flex-direction: row;
    background-color: var(--color-black); /* Bloco em preto para contraste */
    color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.event__media {
    flex: 0 0 40%; /* 40% da largura para a imagem */
    height: 100%;
}

.event__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event__info {
    flex: 1;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.event__details {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
}

.event__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-gray);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-expert {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 600;
}

.events__cta-button {
    background: linear-gradient(180deg, var(--color-black), var(--color-gray)); /* Botão em gradiente de preto/cinza */
    color: var(--color-white);
    border: none;
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.events__cta-button:hover {
    transform: translateY(-2px);
    background: var(--color-black);
}

/* Responsividade */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    .event__media {
        flex: 1;
        height: 250px; /* Altura fixa em mobile */
    }
    .event__info {
        text-align: center;
    }
    .event__meta {
        justify-content: center;
        gap: 1rem;
    }
}


/* style.css */

/* ... (código anterior) ... */

/* Seção de Preço e Oferta Final */
.pricing-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card de Preço (Simulando o Fundo Desfocado) */
.pricing-card {
    background-color: var(--color-dark-gray); /* Cinza escuro para o card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    
    /* Efeito sutil de Glassmorphism (opcional) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing__header {
    margin-bottom: 2rem;
}

.pricing__tag {
    font-size: 0.875rem;
    color: var(--color-light-gray);
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.pricing__title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-white);
}

.pricing__subtitle {
    font-size: 1rem;
    color: var(--color-light-gray);
}

/* Bloco de Preço */
.pricing__price-block {
    margin: 3rem 0;
}

.price-from {
    font-size: 1rem;
    color: red; /* Cor vermelha para o preço riscado */
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light-gray);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
}

/* Lista de Benefícios */
.pricing__benefits {
    text-align: left;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits__title {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
}

.pricing__benefits ul {
    list-style: none;
    padding: 0;
}

.pricing__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-white);
}

.check-icon {
    color: #00FF7F; /* Verde vibrante para o checkmark (Contraste) */
    font-weight: bold;
    flex-shrink: 0;
}

/* Botão CTA Final */
.pricing__cta-button {
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    width: 100%;
}

.pricing__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.8);
}


/* style.css */

/* ... (código anterior) ... */

/* Seção Sobre a HPM Educação Executiva */
.about-section {
    padding: 6rem 0;
    background-color: var(--color-white); /* Fundo branco */
    color: var(--color-black);
    overflow: hidden;
}

.about__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bloco de Texto */
.about__text-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
    padding-right: 2rem;
}

.about__tag {
    font-size: 0.9rem;
    color: var(--color-gray);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.about__title.second-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about__mission-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Bloco de Mídia e Gráfico */
.about__media-container {
    flex: 1;
    position: relative;
    max-width: 50%;
    height: 600px; /* Altura fixa para o bloco de imagem */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__team-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 3;
}

/* Elemento Gráfico (Simulando o Laranja com Cinza Escuro) */
.about__graphic-element {
    position: absolute;
    top: 50%;
    right: -100px; /* Posiciona o elemento para fora da tela */
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    /* Gradiente em tons de Cinza para simular o efeito do gráfico */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05) 50%, transparent 80%);
    z-index: 2;
}

/* Responsividade */
@media (max-width: 992px) {
    .about__wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .about__text-content,
    .about__media-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    .about__media-container {
        height: 450px;
    }
    .about__graphic-element {
        right: -10%;
        width: 400px;
        height: 400px;
    }
}