

/* --- RESET BÁSICO E VARIÁVEIS DE COR --- */
:root {
    --black: #0D0D0D;
    --dark-gray: #1a1a1a;
    --orange: #FF4500; /* Laranja Vívido */
    --light-orange: #FF6347;
    --white: #F5F5F5;
    --text-gray: #B3B3B3;
    --green:#00a651;
    --light-green:#59dd38;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'League Spartan', sans-serif;
    background-color: var(--black);
    color: var(--white);
}

/* --- ESTILOS GERAIS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.1;
}

.highlight {
    color: var(--orange);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

/* --- BOTÃO DE CHAMADA PARA AÇÃO (CTA) --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(145deg, var(--green), var(--light-green));
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(123, 238, 94, 0.4);
    border: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(1, 250, 1, 0.589);
}

.cta-subtext {
    display: block;
    margin-top: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- SEÇÃO HERÓI --- */
.hero {
    background-color: var(--black);
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/img/temp_bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
}

.hero-title {
    font-family: 'Teko', sans-serif;
    font-size: 5rem;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 40px;
}

/* --- SEÇÃO SOBRE O MENTOR --- */
.about {
    background-color: var(--black);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5%; /* Espaçamento entre a galeria e o texto */
    text-align: left;
}

.about-text {
    flex-basis: 55%; /* O texto ocupa 55% do espaço */
}

.about-text .section-title {
    text-align: left;
    font-size: 4.5rem; /* Aumenta o tamanho da fonte do título */
    line-height: 1;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ESTILOS DA GALERIA CIRCULAR DO MENTOR */
.mentor-gallery-circular {
    flex-basis: 40%; /* A galeria ocupa 40% */
    position: relative;
    max-width: 400px; /* Tamanho máximo */
    width: 100%;
    aspect-ratio: 1 / 1; /* Garante que seja sempre um quadrado */
    margin: 0 auto;
}

.mentor-gallery-circular img {
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.main-mentor-photo {
    width: 75%; /* 280px de 400px */
    height: 705;
    border: 5px solid var(--orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.support-photo {
    width: 30%; /* 100px de 400px */
    height: 30%;
    border: 3px solid var(--orange);
    z-index: 1;
}

/* Posicionamento das fotos de suporte */
.photo1 { top: -20%; left: 35%; }
.photo2 { top: -8%; left: 0%; }
.photo3 { top: 35%; left: -20%; }
.photo4 { bottom: -8%; left: 0%; }
.photo5 { bottom: -20%; right: 35%; }

/* --- RESPONSIVIDADE PARA A SECÇÃO DO MENTOR --- */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text .section-title {
        text-align: center;
        margin-top: 40px; /* Adiciona espaço quando empilha */
    }
    .mentor-gallery-circular {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-text .section-title { font-size: 3.5rem; }
}

/* --- SEÇÃO SOBRE --- 
.about {
    background-color: var(--dark-gray);
}
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}
.mentor-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--orange);
    flex-shrink: 0;
}
.about-text p {
    max-width: 100%;
}
    */

.products {
    background-color: var(--black);
}

.product-carousel {
    width: 100%;
    padding: 20px 0 40px 0; /* Espaço para as setas */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
    text-align: center;
    border-top: 5px solid var(--orange);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 50px; /* Garante alinhamento */
}

.product-link {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    background-color: var(--light-orange);
}

/* Estilização das setas do Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--orange) !important;
}

/* --- SEÇÃO CURSO --- */
.modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.module {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--orange);
    transition: transform 0.3s ease;
}
.module:hover {
    transform: translateY(-10px);
}
.module h3 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.module p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* --- SEÇÃO DEPOIMENTOS --- */
.testimonials {
    background-color: var(--dark-gray);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.testimonial {
    background-color: var(--black);
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--orange);
}
.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author span {
    font-weight: bold;
    color: var(--white);
}

/* --- SEÇÃO CTA FINAL --- */
.final-cta .section-title {
    font-size: 3rem;
}
.guarantee {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--dark-gray);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--orange);
}
.guarantee p {
    margin: 0;
    text-align: left;
    color: var(--white);
    font-size: 1rem;
}

/* --- SEÇÃO FAQ --- */
.faq {
    background-color: var(--dark-gray);
}
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px auto;
    background-color: var(--black);
    border-radius: 8px;
    text-align: left;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-size: 1.3rem;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2rem;
    color: var(--orange);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
}

/* --- RODAPÉ --- */
footer {
    background-color: var(--black);
    padding: 30px 20px;
    border-top: 1px solid var(--dark-gray);
}
footer p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .about-container { gap: 30px; }
    .mentor-photo { width: 200px; height: 200px; }
}