/* public/cliente/css/sobre-nos.css */

/* --- CONFIGURAÇÕES GLOBAIS E FUNDO --- */
body {
    background-color: #0a0a0f;
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

.about-us-container {
    width: 100%;
}

/* --- ATO 1: A ABERTURA ÉPICA --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(161, 86, 255, 0.25), transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 234, 255, 0.25), transparent 50%);
    animation: fumaca 20s infinite alternate;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ff4ecb;
    text-shadow: 0 0 10px #ff4ecb, 0 0 25px #ff4ecb, 0 0 40px #ff4ecb;
    margin: 0;
    animation: fadeInDown 1.5s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    animation: fadeInUp 1.5s ease-out;
}

.scroll-down-indicator {
    position: absolute;
    bottom: -15%;
    transform: translateX(-50%);
    color: #00eaff;
    animation: bounce 2s infinite;
}

.scroll-down-indicator .arrow {
    font-size: 1.5rem;
}

/* --- ATO 2: A JORNADA (TIMELINE) --- */
.journey-section {
    padding: 100px 20px;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* A linha vertical que será animada pelo JS */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0; /* JS vai aumentar a altura */
    background: linear-gradient(to bottom, #a156ff, #00eaff);
    box-shadow: 0 0 10px #a156ff;
    transform: translateX(-50%);
    transition: height 0.5s ease-out;
    z-index: 1;
}

.timeline-event {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    /* Prepara para a animação de entrada */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    box-sizing: border-box;
    z-index: 2;
}

/* Classe que o JS vai adicionar quando o elemento estiver visível */
.timeline-event.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Configuração dos lados da timeline */
.timeline-event[data-side="left"] {
    left: 0;
    text-align: right;
}

.timeline-event[data-side="right"] {
    left: 50%;
}

/* Ícones na timeline */
.timeline-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #0a0a0f;
    border: 3px solid #a156ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 3;
    box-shadow: 0 0 15px #a156ff, 0 0 25px #a156ff;
}

.timeline-event[data-side="left"] .timeline-icon {
    right: -25px; /* Metade da largura do ícone */
}

.timeline-event[data-side="right"] .timeline-icon {
    left: -25px;
}

.timeline-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    margin-top: 0;
}

.timeline-content p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* --- ATO 3: O CRIADOR --- */
.creator-section {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.03);
}

.creator-card {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    /* Animação de entrada */
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.creator-card.visible {
    opacity: 1;
    transform: scale(1);
}

.creator-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00eaff;
    box-shadow: 0 0 20px #00eaff, 0 0 35px #00eaff;
}

.creator-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff4ecb;
    margin: 0;
}

.creator-info h3, .creator-info h4 {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.creator-info p {
    line-height: 1.7;
    font-style: italic;
}

/* --- ATO FINAL: O CONVITE --- */
.final-cta-section {
    padding: 100px 20px;
    text-align: center;
}

.final-cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #39ff14;
    text-shadow: 0 0 15px #39ff14;
    margin-bottom: 30px;
}

.neon-button {
    background-color: transparent;
    border: 2px solid #ff4ecb;
    color: #ff4ecb;
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #ff4ecb, 0 0 20px #ff4ecb, inset 0 0 5px #ff4ecb;
}

.neon-button:hover {
    background-color: #ff4ecb;
    color: #0a0a0f;
    box-shadow: 0 0 15px #ff4ecb, 0 0 30px #ff4ecb, 0 0 45px #ff4ecb;
    transform: scale(1.05);
}

/* --- ANIMAÇÕES --- */
@keyframes fumaca {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .subtitle { font-size: 1rem; }

    /* Ajusta a timeline para mobile */
    .timeline-line { left: 20px; }
    .timeline-event {
        width: 100%;
        padding-left: 70px;
        padding-right: 10px;
    }
    .timeline-event[data-side="left"], .timeline-event[data-side="right"] {
        left: 0;
        text-align: left;
    }
    .timeline-event[data-side="left"] .timeline-icon, .timeline-event[data-side="right"] .timeline-icon {
        left: -5px;
    }

    /* Ajusta o card do criador para mobile */
    .creator-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Em public/cliente/css/sobre-nos.css */

/* ... (suas regras de body e .about-us-container) ... */


/* --- VÍDEO DE FUNDO E OVERLAY --- */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Camada 1: O fundo de tudo */
}

/* O overlay para escurecer o vídeo e garantir a leitura do texto */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.6); /* Cor escura com 60% de opacidade */
    z-index: 2; /* Camada 2: Fica entre o vídeo e o texto */
}

#hero-video {
    width: 100%;
    height: 100%;
    /* A mágica para o vídeo cobrir todo o espaço sem distorcer */
    object-fit: cover; 
}


/* --- AJUSTE NO CONTEÚDO DO HERO --- */
/* Precisamos garantir que o texto e o indicador de scroll fiquem na camada de cima */
.hero-section .hero-content,
.hero-section .scroll-down-indicator {
    position: relative; /* Necessário para o z-index funcionar */
    z-index: 3; /* Camada 3: A camada mais alta, sempre visível */
}


/* --- ATO 1: A ABERTURA ÉPICA (a sua regra existente) --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Essencial para o posicionamento do vídeo */
    /* Removemos o background-image daqui, já que o vídeo é o novo fundo */
    animation: fumaca 20s infinite alternate; /* Pode manter se quiser o efeito por cima */
}

/* ... (o resto do seu CSS continua igual) ... */