@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
:root {
   
   /* Paleta de Cores solidas */
    --base-1: #0c1c49;
    --base-2: #2581c4;
    --base-3: #14387f;
    --base-4: #080f26;

    /* Paleta de Cores com Transparencia */
    --glass-1: rgba(12, 28, 73, 0.65);
    --glass-2: rgba(37, 129, 196, 0.65);
    --glass-3: rgba(20, 56, 127, 0.65);
    --glass-4: rgba(8, 15, 38, 0.65);

    --glass-border: rgba(255, 255, 255, 0.18);
}

/* Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.glass-header {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(12px); z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-header .logo img { 
    height: 50px; 
    width: auto; 
    object-fit: contain; }

.glass-header nav ul { 
    display: flex; 
    list-style: none;
     gap: 2rem; }

.glass-header nav ul li a {
    text-decoration: none; font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 600; color: #0c1c49;
    text-transform: uppercase; transition: color 0.3s ease; position: relative;
}

.glass-header nav ul li a:hover {
    color: var(--base-2) !important;
}

.glass-header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--base-2);
    transition: width 0.3s ease;
}

.glass-header nav ul li a:hover::after {
    width: 100%;
}
.glass-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Menu Sanduíche */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    gap: 6px; 
    z-index: 1100; 
}

.menu-toggle .bar { 
    width: 30px; height: 3px; 
    background-color: var(--base-1); 
    border-radius: 10px; 
    transition: 0.3s; 
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0; 
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        transition: 0.5s ease; z-index: 1050;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 3rem; }
    .nav-menu ul li a { font-size: 1.5rem; }
}


/*Intro */
/* Seção da Imagem */
/* --- Seção de Entrada (Banner) --- */

.intro {
    position: relative;
    width: 100%;
    /* Altura automática baseada na proporção da imagem */
    height: auto; 
    min-height: 100vh; /* Garante que no mínimo ocupe a tela toda */
    display: flex;
    flex-direction: column;
    overflow: visible; /* Importante para a seção de baixo subir */
}

.intro-bg {
    width: 100%;
    line-height: 0; /* Remove espaços vazios estranhos embaixo da imagem */
}

.intro-bg img {
    width: 100%;
    height: auto; /* Deixa a imagem ditar a própria altura */
    display: block;
    /* Removemos o object-fit: cover para ela não ser cortada */
}

@media (max-width: 1000px) {
    .intro {
        height: auto; /* Deixa a altura ser ditada pela imagem */
        min-height: 350px; /* Garante um mínimo razoável no mobile */
    }
    
    .intro-bg img {
        width: 200%;
        height: auto;
        margin-left: -85%; /* Centraliza a imagem mesmo com largura aumentada */
    }

    .intro h1 {
        font-size: 2.5rem;
    }
    
}

/* Ajuste na seção que sobe */
.video-section {
    position: relative;
    z-index: 10;
    background-color: #fff;
    
    /* Subida de 10% em relação à altura da tela */
    margin-top: -20vh; 
    
    border-radius: 50px 50px 0 0;
    padding: 60px 10%;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.1);
}
/* --- Elementos Internos --- */
.video-badge-top {
    width: 100%; /* Ocupa a linha toda acima do vídeo e texto */
    text-align: center;
    margin-bottom: 2rem;
    color: var(--base-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* Container que segura as duas colunas */
.video-content-wrapper {
    display: flex;
    align-items: center; /* Centraliza verticalmente vídeo e texto */
    justify-content: space-between;
    gap: 4rem; /* Espaço entre o vídeo e o texto */
    width: 100%;
}

/* Coluna do Vídeo */
.video-container {
    flex: 3; /* Dá um pouco mais de espaço para o vídeo */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Coluna do Texto */
.video-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left; /* Alinha o texto à esquerda */
    color:#666;
}

.video-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: #2581c4;
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .video-content-wrapper {
        flex-direction: column; /* No tablet/celular, o texto vai para baixo do vídeo */
        gap: 2rem;
    }
    
    .video-text {
        text-align: center; /* Centraliza o texto no mobile */
    }
}

/* --- Ajuste Mobile --- */
@media (max-width: 1000px) {
    .video-section {
        margin-top: -60px; /* Sobe menos no mobile */
        padding: 60px 5%;
        flex-direction: column;
        gap: 2rem;
    }

    .video-text {
        text-align: center;
    }
}



/* --- Sticky Cards (Participantes) --- */

/* --- ESTILOS GERAIS (HD e Desktop) --- */
/* Container da Grade */
.grid-section {
    background-color: var(--base-1);
    padding: 0;
    position: relative;
    min-height: fit-content;
    z-index: 10;
}
.container-grid {
    display: grid;
    /* Força 2 colunas no desktop para o efeito 2x2 que você pediu */
    grid-template-columns: repeat(2, 350px); 
    gap: 40px;
    justify-content: center;
    padding: 60px 20px;
    color: #080f26;
}

/* O Card Individual */
.speaker-card {

    border-radius: 28px; /* Bordas mais modernas e amigáveis */
    overflow: hidden;
    /* Sombra suave que dá profundidade sem parecer "suja" */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    height: fit-content;
}

/* Efeito de levante ao passar o mouse */
.speaker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* A Imagem */
.speaker-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém o quadrado perfeito */
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom suave na foto do palestrante no hover */
.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

/* Área de Texto Centralizada */
.speaker-info {
    padding: 25px 20px;
    text-align: center;
    background: #ffffff;
}

/* Estilo para o H1 (Função/Tema) */
.speaker-info h1 {
    font-size: 1rem !important;
    color: #0c1c49;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: none; /* Mantém a leitura natural */
}

/* Estilo para o Nome (se estiver usando a tag span ou outra dentro de info) */
.speaker-info .speaker-name, 
.speaker-info h3 {
    font-size: 1.4rem;
    color: #080f26; /* Azul bem escuro para contraste */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Ajuste para Mobile */
@media (max-width: 800px) {
    .container-grid {
        grid-template-columns: 1fr; /* Vira lista no celular */
        max-width: 340px;
        gap: 30px;
        margin: 0 auto;
    }
        .grid-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        
    }

    .speaker-image {
        height: 350px;
    }
}


/* --- RESPONSIVIDADE (Ajuste para Telas Menores) --- */

/* No Tablet: 2 colunas */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* --- Programação --- */
.programming-section {
    background-color: #fff;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    clear: both;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--base-1);
}

.days-wrapper {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.day-label {
    background: var(--base-1);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.schedule-item {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.schedule-item .time {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--base-2);
    min-width: 100px;
}


/* Rodapé */
.main-footer {
    position: relative; 
    z-index: 100;        
    background-color: var(--base-4);
    color: #fff;
    padding: 80px 5% 20px;
    width: 100%;
    min-height: 300px;  
    display: block;     
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 0.8rem;
}

.links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links ul li a:hover {
    color: var(--base-2);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: var(--base-4);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}



/* Responsividade */

/* Responsividade footer*/
@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about p {
        margin: 0 auto;
    }
    .social-icons {
        justify-content: center;
    }
}


@media (min-width: 1201px) {
    .card {
        width: 70%; /* Mantém o aspecto elegante e centralizado */
        height: 65%;
    }
}

/* 2. LAPTOPS E TABLETS DEITADOS (992px até 1200px) */
@media (max-width: 1200px) {
    .card {
        width: 85%; /* Card ocupa mais espaço lateral */
        height: 70%;
    }
    .video-section {
        padding: 80px 5%;
        gap: 2rem;
    }
}

/* 3. TABLETS E CELULARES GRANDES (768px até 991px) */
@media (max-width: 991px) {
    /* Header ajustado */
    .glass-header {
        height: 70px;
    }
    .glass-header .logo img {
        height: 35px;
    }
}
    /* Intro */
    .intro {
        height: 500px; /* Reduz altura do banner */
    }
    .intro h1 {
        font-size: 3.5rem;
    }

    
    @media (max-width: 1000px) {
    .video-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
      
        height: auto !important; 
        min-height: auto !important;
        padding: 40px 10% !important;
        gap: 1.5rem;
        background-color: #fff;
    }

    .video-container {
        width: 100%;
        max-width: 450px; 
        aspect-ratio: 16 / 9;
        margin: 0 auto;
    }

    .video-text {
        width: 100%;
        max-width: 450px;
        text-align: center;
        padding-bottom: 20px; 
    }

    .video-text h1 {
        font-size: 2rem;
        margin: 10px 0;
        
    }

    .video-text .description {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 0;
    }
}
   

@media (max-width: 950px) {
    /* ... outros códigos do mobile (header, intro) ... */

    /* 1. CONTAINER PAI (Seção inteira) */
    .sticky-cards {
        position: relative;
        height: 100vh; /* Mantém a seção ocupando a tela toda para o efeito sticky */
        background-color: var(--base-1);
        z-index: 10;
        overflow: hidden;
    }

    
    .sticky-cards .card {
        flex-direction: column; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        
        
        width: 90%;          
        height: auto;        
        max-height: 85%;    
        
        padding: 1.2rem;     
        gap: 0.8rem;         
        border-radius: 1.5rem;
        
        
        overflow: hidden; 
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

  
    .card .col.image-content {
        flex: none; 
        width: 100%;
        
       
        height: 250px;      
        border-radius: 1rem;
        overflow: hidden;
        order: 1;           
        margin-bottom: 0;
    }

    .image-content img {
        object-fit: cover; 
        object-position: center; 
        width: 100%;
        height: 100%;
        display: block;
    }

   
    .card .col.text-content {
        flex: 1; 
        order: 2;
        font-size: 1rem;
        line-height: 1.5;
        overflow-y: visible; 
    }

    .profile-header .name {
        font-size: 1.5rem !important; 
        line-height: 1.1;
        margin: 4px 0 8px;
        font-weight: 800;
    }

    
    .profile-header .role {
        font-size: 0.65rem !important; 
        letter-spacing: 1.5px;
        opacity: 0.8;
        margin-bottom: 2px;
    }

    
    .profile-bio p {
        font-size: 0.85rem !important; 
        line-height: 1.4;             
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 12px;
    }

    
    .info-participantes ul li,
    .profile-social span {
        font-size: 0.8rem !important;
        margin-bottom: 4px;
    }

    
    .card .col.text-content {
        padding: 0 0.2rem;
        gap: 0.5rem; 
    }
}


@media (max-width: 991px) and (min-width: 901px) {

    .card .col.image-content {
        flex: none; 
        height: 40%; 
        width: 100%;
        order: 1; 
        margin-bottom: 1rem;
    }

    .card .col.text-content {
        flex: none;
        height: 55%; 
        order: 2;
        overflow: hidden; 
    }

    .image-content img {
        object-fit: cover; 
        object-position: top; 
    }
}


@media (max-width: 767px) {
    .days-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .day-column {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 2rem;
    }
    .social-icons {
        justify-content: center;
    }

    .video-text h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 480px) {
    .glass-header nav ul {
        gap: 1rem;
    }
    .glass-header nav ul li a {
        font-size: 0.7rem; 
    }

    .intro {
        height: 350px;
    }
    .intro h1 {
        font-size: 2.5rem;
    }

}

@media (max-width: 767px) {

    .programming-section {
        padding: 40px 5% !important;
    }

    .programming-section h1 {
        font-size: 2rem !important; 
        text-align: left;
        padding-left: 5%;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

   .programming-section h2, 
    .programming-section {
        font-size: 1.2rem !important;
        text-align: left;
        padding-left: 5%;
        margin-bottom: 20px;
        word-wrap: break-word;
    }


    .day-label {
        font-size: 0.85rem !important;
        padding: 4px 15px !important;
        border-radius: 20px !important;
        margin-bottom: 10px !important;
        background-color: var(--base-1);
        color: #fff;
        display: inline-block;
        width: fit-content;
    }


    .days-wrapper {
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        gap: 20px; 
    }

    .day-label {
        font-size: 1rem !important;
        padding: 6px 20px !important;
        margin-bottom: 1.5rem !important;
        display: inline-block;
    }

  
    .schedule-item {
        display: flex;
        align-items: flex-start;
        padding: 12px 0 !important; /* Espaço vertical bem reduzido */
        border-bottom: 1px solid #eee; /* Linha sutil para separar */
        gap: 15px;
    }

    /* O Horário (14:00) */
    .schedule-item .time {
        font-size: 1.1rem !important; /* Menor para não empurrar o texto */
        color: var(--base-2);
        font-weight: 700;
        min-width: 60px; /* Largura fixa menor */
        margin-top: 2px; /* Alinha levemente com o topo do título da palestra */
    }

    /* Bloco de conteúdo da palestra */
    .schedule-content {
        display: flex;
        flex-direction: column;
    }

    .schedule-content h3 {
        font-size: 1rem !important; /* Título da palestra mais direto */
        margin: 0 !important;
        line-height: 1.2;
    }

    .schedule-content p {
        font-size: 0.8rem !important; /* Subtítulo menor */
        margin: 2px 0 0 0 !important;
        color: #666;
    }
}

@media (max-width: 1000px) {
    /* Força o elemento pai a não ser mais largo que a tela */
    .video-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 60px 20px !important; /* Padding fixo para não espremer */
        margin-top: -80px !important;
        box-sizing: border-box !important;
    }

    /* Ajuste do Badge */
    .video-badge-top {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .video-badge-top h1 {
        font-size: 0.8rem !important;
        white-space: normal !important;
    }

    /* O vídeo precisa ocupar 100% e não ter margens negativas */
    .video-container, .video-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; 
        flex: none !important;
    }

    /* O texto que está vazando */
    .video-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
        display: block !important;
    }

    .video-text h1 {
        font-size: 1.8rem !important; /* Diminuído para caber */
        line-height: 1.2 !important;
        word-wrap: break-word !important; /* Força a quebra de 'Empreendedorismo' */
        overflow-wrap: break-word !important;
        hyphens: auto !important; /* Adiciona hífen se quebrar a palavra */
    }

    .video-text .description {
        font-size: 0.9rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}
    
