/* Estilos Customizados */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --text-color: #ccc;
    --cta-color: #008000; /* Verde para CTAs (exemplo) */
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-color);
    color: var(--text-color);
}

p{
    font-weight: 300;
}

li{
    font-weight: 300;
}


h1{
    font-weight: 700;
}


h2{
    font-weight: 600;
}

h3{
    font-weight: 400;
}

i{
      font-weight: 300;
  
}

a {
  text-decoration: none;
  color: inherit;
}

/* Estilo para a barra de navegação superior */
.navbar {
    background-color: var(--primary-color) !important;
    border-bottom: 1px solid #333;
    font-size: 0.8rem;
}

.navbar-brand, .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 300;
    /* Ajustei o padding para ficar mais próximo ao layout */
    padding: 0.5rem 1rem;
    line-height: 1.5; /* Garante que os links se alinhem bem com o botão */
}

/* Botão CTA no Menu */
.btn-menu-cta {
    background-color: #A9A9A9; /* Cor cinza clara conforme o print */
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    white-space: nowrap; /* Impede que o texto quebre, se possível */
    transition: background-color 0.3s ease;
}

.btn-menu-cta:hover {
    background-color: #999999;
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: #ddd !important;
}

.btn-custom{
    margin-top: 5px;
}
/* Hero Section (Topo) */
.hero-section {
    /* ATUALIZADO: Usando principal.jpg */
    background: url('principal2.jpg') no-repeat center center/cover;
    height: 80vh; /* Altura ajustável */
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 56px; /* Ajuste para o navbar fixo */
    color: white;
}



/* Ajustes de responsividade (móvel) */
@media (max-width: 768px) {
  .hero-section {
    /* ATUALIZADO: Usando principal.jpg */
    background: url('principalmob2.jpg') no-repeat center center/cover;
    height: 50vh; /* Altura ajustável */
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content{
    width: 65%;
    margin-left: 20px;
    padding-top: -20px;
}
}



.custom-separator-img{
    margin-top: -20px;
    z-index: 33333333;
}




.bg2{
    background-color: #000000;
}

.bg2 .title{
   border: 1px solid white; /* 1px, linha sólida, cor preta */
  display: inline-block;  /* para a borda ficar ajustada ao texto */
  padding: 10px 20px 10px 20px;
  border-radius: 5px;    
  margin-top: 20px;
}

.bg2 .list-unstyled {
    margin-top: 20px;
}

.bg2 h4{
    line-height: 1.5;
}
/* --- Linha do Tempo (CARROSSEL INTERATIVO) --- */
.timeline-section {
    padding: 100px 0 150px 0; /* Mais padding inferior para os indicadores e labels */
    text-align: center;
    overflow: hidden; 
}

#timelineCarousel {
    position: relative;
}

/* Indicadores como pontos de navegação */
.timeline-indicators {
    position: absolute;
    bottom: -80px; /* Posição abaixo da linha principal */
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    margin: 0;
}

.timeline-indicators button {
    width: 12px;
    height: 12px;
    background-color: #666; /* Cor do ponto inativo */
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s, background-color 0.3s;
}

.timeline-indicators button.active {
    background-color: var(--secondary-color);
    opacity: 1;
}

/* Linha visual que conecta os pontos */
.timeline-row-content {
    position: relative;
    padding: 50px 0; /* Espaço para a linha no centro vertical */
}

.timeline-row-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #444;
    transform: translateY(-50%);
    z-index: 1;
}

/* Item dentro do carrossel */
.timeline-item-carousel {
    position: relative;
    z-index: 5;
}

.timeline-point-carousel {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-label-carousel {
    display: block;
    position: absolute;
    top: 70px; /* Posição da label abaixo do ponto */
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: 100%; 
    max-width: 150px;
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.2;
}

/* Imagem Central (Item 6) */
.timeline-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    z-index: 10;
    overflow: hidden;
    border: 3px solid #fff; /* Borda branca para destacar */
    border-radius: 50%;
}

.timeline-central-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: none; 
}

.label-below-image {
    top: 170px; /* Ajusta a label para ficar abaixo da imagem grande */
}

/* Logo Final (Item 7) */
.timeline-logo-wrapper {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    padding: 10px;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: none;
    z-index: 10;
}

.timeline-final-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Esconde a linha horizontal no slide com a imagem/logo grande, se necessário,
   mas vamos manter a linha passando por trás de todos para simplicidade visual */


/* Estilos para as setas de controle do carrossel */
#timelineCarousel .carousel-control-prev, 
#timelineCarousel .carousel-control-next {
    width: 5%; /* Reduz a largura das setas */
    opacity: 0.8;
}

.franchising{
    background: #f6f6f6;
}

/* Carrossel de Imagens/Cards */
.carousel-card-content {
    padding: 20px;
}
.carousel-card-content img {
    object-fit: cover;
    width: 100%;
}
.carousel-card-content p {
    margin-top: 15px;
    color: #7a7a7a;
    font-weight: 300;
    text-align: center;
}

/* Seção Inteligência Artificial */
.ai-title h2{
    font-weight: 300;
}
.ai-section {
    padding: 60px 0;
    background-color: #0c0c0c;
    color: white;
}

.ai-video-mock {
    height: 400px; /* Aumenta a altura para o vídeo */
}

.btn-cta-main{
    background: #aeaeae;
    padding: 10px 40px 10px 40px;
    text-decoration: underline;
    font-weight: 600;

}


.btn-cta-main:hover{
    background: #8e8d8d;
    color: black;
}

.btn-help{
    background: #484746;
    padding: 10px 40px 10px 40px;
    color: white;

}

.btn-help:hover{
    background: #232323;
}

.franq{
    background: #0c0c0c;
    color: white;
}
/* Carrossel de Franquias (Um item por vez) */
.franchise-logo-box {
    background-color: var(--secondary-color);
    border-radius: 8px;
    /* Altura maior para ocupar bem a área central */
    height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Centraliza a caixa */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer{
    background: url('bgfooter.png') no-repeat center center/cover;

    background-color: #0c0c0c;
    padding-top: 5%;
    padding-bottom: 5%;
    color: white;
}

.social-icons{
    margin-top: 15px;
}
.custom-footer{
    background: #1e1e1e;
    padding: 50px;
    font-size: 0.8rem;
    text-align:center;

}

/* Ajustes de responsividade (móvel) */
@media (max-width: 991.98px) {
    /* Em telas pequenas, o botão CTA do menu fica em linha separada */
    .btn-menu-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* Linha do tempo vertical em mobile */
    .timeline-container-custom {
        display: block;
        margin: 40px 20px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-item {
        margin: 30px 0;
        text-align: left;
        padding-left: 60px; 
    }
    .timeline-point, .timeline-point-image {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
    .timeline-point-image {
        top: 5px;
    }
    .timeline-label {
        position: static;
        transform: none;
        width: auto;
        display: block;
        margin-top: 0;
        padding-left: 10px;
    }
    /* Zigue-zague desativado no mobile */
    .position-bottom {
        margin-top: 30px; 
    }
    .position-top .timeline-label, .position-bottom .timeline-label {
        top: auto;
    }
    .position-bottom .timeline-point, .position-bottom .timeline-point-image {
        top: 5px;
    }
}



 /* Estilos específicos para a página CONHEÇA A N2 */
        .n2-hero-section {
            background: url('n2bg.jpg') no-repeat center center/cover;
            padding-top: 100px; /* Espaço para o menu fixo */
            padding-bottom: 80px;
            color: var(--secondary-color);
            min-height: 80vh;
            text-align: justify;

        }

        .n2-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .n2-video-mock {
            background: #222;
            height: 350px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .n2-video-mock .play-button {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.2); 
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        
        .n2-video-mock .play-button i {
             font-size: 40px;
             color: var(--secondary-color);
        }

        .n2-logo-container {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }

        .n2-logo {
            font-size: 4rem;
            font-weight: 700;
            margin-right: 20px;
        }
        

        .n2-logo img {
            width: 30%;
        }
        

        .n2-instagram-button {

            border: 1px solid white; /* 1px, linha sólida, cor preta */
            display: inline-block;  /* para a borda ficar ajustada ao texto */
            padding: 10px 20px 10px 20px;
            border-radius: 5px;    
            margin-top: 20px;
            
            padding: 10px 20px;
            display: flex;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .n2-instagram-button:hover {
        }



        /* Estilos específicos para a página SOBRE */
        .about-section {
            background: url('sobre.jpg') no-repeat center center/cover;
            padding-top: 100px; /* Espaço para o menu fixo */
            padding-bottom: 80px;
            color: var(--secondary-color);
            min-height: 80vh;
        }

        .about-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 300; /* Padrão Inter Light/Regular */
            max-width: 900px; /* Limita a largura do texto central */
            margin: 0 auto;
            text-align: justify;
        }

        .about-content p {
             margin-bottom: 1.5rem;
        }
        
        .about-content strong {
            font-weight: 600;
        }

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


 /* Estilos específicos para a página CURSOS E MENTORIAS */
        .mentoria-section {
            background: url('sobre.jpg') no-repeat center center/cover;
            /* Usando um fundo desfocado simulado como na imagem */
            background-size: cover;
            background-position: center;
            padding-top: 100px; 
            padding-bottom: 80px;
            color: var(--secondary-color);
            min-height: 90vh;
        }

        .mentoria-content {
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .mentoria-title {
            font-family: 'Inter', cursive; /* Mantendo Inter, mas com itálico para o "MEUS" */
            font-style: italic;
            font-size: 3rem;
            font-weight: 300; 
            margin-bottom: 5px;
        }

        .mentoria-subtitle {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .mentoria-description {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* Estilo para os cards de cursos/mentoria (Imagens que ficarão abaixo) */
        .course-card-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .course-card {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 300px;
            height: 400px; /* Altura fixa para os cards */
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .course-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            color: var(--secondary-color);
        }

        .card-label {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .card-subtext {
            font-size: 0.9rem;
            font-weight: 300;
        }

        /* Botão CTA Fale com a Equipe (Fundo Cinza Claro como no layout) */
        .btn-mentoria-cta {
            background-color: #A9A9A9; 
            color: var(--primary-color) !important;
            font-weight: 600;
            padding: 0.75rem 2.5rem;
            border: none;
            border-radius: 4px;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }
        .btn-mentoria-cta:hover {
            background-color: #888;
            color: var(--primary-color) !important;
        }

        @media (max-width: 991.98px) {
            .mentoria-title {
                font-size: 2.5rem;
            }
            .mentoria-subtitle {
                font-size: 3rem;
            }
            .course-card-wrapper {
                flex-direction: column;
                align-items: center;
            }
        }

 /* Estilos específicos para a página IMPRENSA */
        .press-section {
            background: url('n2bg.jpg') no-repeat center center/cover;
            padding-top: 100px; /* Espaço para o menu fixo */
            padding-bottom: 80px;
            color: var(--secondary-color);
            min-height: 90vh;
        }

        .press-header {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 50px;
            padding-left: 15px;
        }

        .press-header i {
            font-style: italic; /* Para o '/I' em '/IMPRENSA' */
        }
        
        /* Bloco de Imagem/Destaque */
        .press-media-block {
            background-color: #555; /* Cor cinza simulada */
            border-radius: 15px; /* Bordas arredondadas */
            height: 250px; /* Altura fixa para as imagens */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            overflow: hidden; /* Para imagens que serão inseridas */
        }

        .press-text-info {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
            margin-top: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        @media (max-width: 991.98px) {
            .press-header {
                font-size: 2.5rem;
            }
        }

.contact-section {
            padding: 120px 0 80px 0;
            min-height: 85vh;
        }

        .form-title {
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 40px;
        }

        /* Estilização dos campos conforme solicitado */
        .form-control-custom {
            background-color: #A9A9A9 !important; /* Cinza claro */
            border: none;
            border-radius: 4px;
            padding: 12px 15px;
            color: #000 !important;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .form-control-custom::placeholder {
            color: #444;
        }

        .form-control-custom:focus {
            background-color: #ccc !important;
            box-shadow: 0 0 0 0.25rem rgba(169, 169, 169, 0.25);
            outline: none;
        }

        .btn-submit-form {
            background-color: #fff;
            color: #000;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            padding: 12px 40px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-submit-form:hover {
            background-color: #aeaeae;
            color: #000;
        }

        label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }
