/* Importação de Fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* =========================== */
/* ESTILOS GERAIS */
/* =========================== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p, li {
    font-size: 1rem;
    font-weight: 300;
}

strong {
  font-weight: bold; /* Já é o padrão, mas ajuda a reforçar */
  color: #fff; /* Uma cor de texto mais escura */
  font-size: 1.1em; /* Levemente maior que o texto normal */
}

footer {
    background: #121212;
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}


/* Links */
nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

nav a:hover {
    color: #28a745;
}

/* =========================== */
/* HEADER */
/* =========================== */
header {
    background-color: #000;
    position: relative;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;    
}
        
.logo img {
    width: auto;
    height: 120px;
    object-fit: contain;
}       

/* =========================== */
/* PERSONALIZAÇÕES */
/* =========================== */
.text-justify {
    text-align: justify; /*PARA JUSTIFICAR TEXTO */
}
    
.gold-heading {
    color: #FFD700; /* Amarelo ouro */
}
        
.dark-green {
    color: #006400; /* Verde escuro */
}
        
.light-green {
    color: #32CD32; /* Verde claro */
}
    
.dark-orange {
    color: #c2c9c2; /* Laranja escuro */
}
        
.blank {
    color: #FFFFFF; /* Branco */
}

.blockquote p {
    font-style: italic;
    font-weight: 400;
}

/* ================================= */
/* SEÇÃO ABOUT */
/* ================================= */

.about-section {
    background-color: #1a1a1a;
    color: white;
    padding: 30px 20px;
    margin-top: 50px;
    margin-bottom: -40px;
}

/* =========================== */
/* HERO SECTION */
/* =========================== */       
.hero {
    color: white;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-inner {
    aspect-ratio: 16 / 9; /* Altura do carrossel ocupando toda a tela */
}

/* Botões do carrossel */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 5%;
    opacity: 0.7; /* Torna os botões mais sutis */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1; /* Aumenta a visibilidade ao passar o mouse */
}

/* Indicadores */
.carousel-indicators button {
    background-color: #fff;
    opacity: 0.7;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #30692b; /* Destaque para o botão ativo */
}

/* =========================== */
/* CORROUSEL 2 SECTION */
/* =========================== */  

.carousel-section {
    color: white;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-inner img {
    hwidth: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: center; /* Centraliza a imagem */
}

/* ================================= */
/* Seção sobre o evento */
/* ================================= */

.about-event {
    background-color: #393939;
    color: white;
    padding: 50px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: justify;
}

.event-text {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid de imagens do evento */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.event-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.event-gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox - Fundo escuro ao expandir imagem */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Botão de fechar no canto superior direito */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Botão de ação */
.event-btn {
    background-color: #114e0d;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.event-btn:hover {
    background-color: #30692b;
}

.event-btn:focus,
.event-btn:active {
    outline: none;
    box-shadow: none;
}

.btn.btn-primary.event-btn:focus,
.btn.btn-primary.event-btn:active {
    outline: none !important;
    box-shadow: none !important;
}





/* =========================== */
/* SEÇÃO COM IMAGEM DE FUNDO */
/* =========================== */       
.background-section {
    width: 100%;
    min-height: 100vh; /* Garante altura mínima de toda a tela */
    background-image: url('https://camilomomomasso.com.br/imgs/auditorio.jpg'); /* URL da imagem */
    background-size: cover; /* Preenche o container sem distorcer */
    background-repeat: no-repeat; /* Evita repetição */
    background-position: center center; /* Centraliza a imagem */
    display: flex; /* Flexbox para centralizar o conteúdo */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

/* Conteúdo do quadrado */
.content-box {
    background-color: rgba(57, 57, 57, 0.9); /* Fundo branco semi-transparente */
    padding: 30px; /* Espaçamento interno */
    width: 80%; /* Largura do quadrado */
    max-width: 600px; /* Largura máxima */
    border-radius: 8px; /* Bordas arredondadas */
    text-align: center; /* Centraliza o texto */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra no quadrado */
}

.mentoria-title {
    font-size: 2rem;
    color: #FF8C00;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content-box h2 {
    font-size: 16px;
    color: #000;
    text-align: left;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 1rem;
    color: #fff;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: -10px;
}

/* LISTAS PERSONALIZADAS */

.custom-list {
    list-style: none; /* Remove o estilo padrão dos tópicos */
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex; /* Coloca a imagem e o texto lado a lado */
    align-items: center; /* Alinha a imagem e o texto verticalmente */
    margin: 10px 0; /* Espaçamento entre os itens */
    padding: 10px;
    /*background-color: #f9f9f9; /* Fundo claro */
    border-radius: 8px; /* Bordas arredondadas */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
}

.custom-list img {
    width: 32px; /* Define o tamanho da imagem */
    height: 32px;
    margin-right: 15px; /* Espaço entre a imagem e o texto */
}

.custom-list span {
    font-family: 'Poppins', sans-serif;
    font-size: 18px; /* Tamanho do texto */
    color: #333; /* Cor do texto */
    text-align: left; 
}


/* =========================== */
/* BOTÕES */
/* =========================== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.cta-button {
    background-color: #ff8001;
    color: white;
    padding: 20px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
     background-color: #FF8C00;
}

/* =========================== */
/* TESTEMUNHOS */
/* =========================== */

.testimonials {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 10px;
}

.testimonials blockquote p {
    font-style: italic;
    font-weight: 400;
    color: #ddd;
}

/* Estilo para imagens dos depoimentos */
.testimonial-img {
    width: 140px; /* Define o tamanho da imagem */
    height: 140px;
    border-radius: 50%; /* Torna a imagem redonda */
    object-fit: cover; /* Ajusta o conteúdo sem distorcer */
    margin-bottom: 15px; /* Espaçamento abaixo da imagem */
}

/* Espaçamento e estilo geral para os depoimentos */
.blockquote {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff; /* Cor do texto */
}

.blockquote-footer {
    font-size: 0.9rem;
    color: #ccc; /* Cor do nome */
}


/* =========================== */
/* PROGRAM CARDS */
/* =========================== */

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
        
.program-card {
    background-color: #393939;
    color: #000;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 2px solid #116a0a; /* Linha lateral para destacar */

    display: flex; /* Ativa o Flexbox */
    flex-direction: column; /* Alinha os elementos verticalmente */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    height: 100%; /* Garante que o conteúdo ocupe toda a altura do bloco */
}
        
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
        
.program-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    color: #c2c9c2;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* =========================== */
/* TEXTO E IMAGEM LADO A LADO */
/* =========================== */

.text-image-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
        
.text-image-container .text-content {
    flex: 1;
    text-align: justify;
}
    
.text-image-container .image-content {
    flex: 1;
}

.text-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Borda arredondada para imagem */
}



/* =========================== */
/* PERGUNTAS FREQUENTES */
/* =========================== */

#faqAccordion {
    max-width: 900px;
    margin: 0 auto;
}
        
#faqAccordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
}
        
#faqAccordion .accordion-button {
    font-size: 1.1rem;
    background-color: #FFF;
    color: f9f9f9;
    border-radius: 0px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
        
#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #117436;
    color: white;
}
        
#faqAccordion .accordion-body {
    background-color: #FFF;
    color: eaeaea;
    padding: 1.5rem;
    border-radius: 5px;
}


/* =========================== */
/* CHAMADA FINAL */
/* =========================== */

.final-call-to-action {
    background-color: #393939; /* Fundo */
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.final-call-to-action h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button-final {
    background-color: #ff8001; /* Botão */
    color: #fff; /* Texto  */
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-final:hover {
    background-color: #FF8C00; /* Amarelo ouro */
    color: #393939; /* Texto preto */
}

/* =========================== */
/* MIDIAS SOCIAIS */
/* =========================== */

.social-media-section {
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
}

.social-media-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-media-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.social-media-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media-section .social-icons a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-media-section .social-icons a img:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}



/* =========================== */
/* SEÇÃO EBOOK */
/* =========================== */


.ebook-section {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.ebook-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Texto do E-book */
.ebook-content {
    flex: 1;
    max-width: 550px;
    text-align: justify;
    justify-content: center;
}

.ebook-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: left;
    max-width: 560px;
}

.ebook-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 560px; /* Define um limite para evitar que o texto fique muito largo */
    text-align: justify;
}

/* Botão de Download */
.cta-button {
    background-color: #FF8C00;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #E67600;
}

/* Imagem do E-book */
.ebook-image img {
    max-width: 500px;
    border-radius: 8px;
}

/* Lista de features do prontuário */
.prontuario-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    max-width: 560px; /* opcional: limita largura do texto */
}

.prontuario-features li {
    position: relative;
    padding-left: 36px;       /* espaço para o ícone */
    margin-bottom: 12px;
    line-height: 1.5;
    color: #f1f1f1;           /* cor do texto (ajuste ao seu tema) */
    font-size: 16px;
}

/* Ícone de check usando pseudo-elemento — sem depender de fontes externas */
.prontuario-features li::before {
    content: "✔";             /* pode usar ✓ ou ✔ */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
    color: #1fb733;           /* verde do ícone (ajuste se quiser) */
    background: transparent;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}



/* =========================== */
/* RESPONSIVIDADE */
/* =========================== */
@media (max-width: 768px) {

    .text-image-container {
        flex-direction: column; /* Empilha conteúdo em telas pequenas */
        text-align: center; /* Centraliza texto em telas pequenas */
    }

    .carousel-overlay {
        top: 50%; /* Ajusta a posição vertical */
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%; /* Aumenta a largura para telas menores */
        max-width: 90%; /* Garante que não ultrapasse os limites */
        padding: 15px; /* Reduz o padding */
        font-size: 0.9rem; /* Diminui o tamanho do texto */
    }

    .event-description h2 {
        font-size: 1.2rem; /* Reduz o tamanho do título */
    }

    .event-description p {
        font-size: 0.9rem; /* Ajusta o texto do parágrafo */
        line-height: 1.4; /* Reduz o espaçamento entre linhas */
    }

    .ebook-section .container {
        flex-direction: column;
        text-align: center;
    }

    .ebook-content, .ebook-image {
        max-width: 100%;
    }

    .ebook-image img {
        max-width: 80%;
    }

    .prontuario-features { max-width: 100%; 
    }
}


