/* ===== SEÇÃO HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: #20394a; /* Fallback para quando o vídeo não carrega */
    display: flex;
    align-items: center;
    color: var(--texto-claro);
    padding-top: 80px; /* Para compensar o header fixo */
    justify-content: center;
    overflow: hidden; /* Para garantir que o vídeo não ultrapasse os limites */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1) sepia(0.2);
}

/* Overlay dualtone */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 86, 111, 0.7) 0%, rgba(11, 30, 47, 0.7) 100%);
    mix-blend-mode: color;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    margin-bottom: var(--spacing-lg);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.hero .cta-button {
    margin-top: var(--spacing-xs);
    align-self: flex-start;
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-md);
    min-width: 200px;
    text-align: center;
    justify-content: center;
}

.logos {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-md);
}

.logo-4ventos {
    max-height: 50px;
    margin-right: var(--spacing-md);
}

.logo-phillips {
    max-height: 120px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    flex-shrink: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 var(--spacing-md);
}

.hero-card {
    display: flex;
    align-items: center;
    background: rgba(32, 57, 74, 0.85);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 3rem 3.5rem;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-texto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, 
.hero .subtitle,
.hero .cta-button,
.logo-phillips {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    animation-delay: 0.3s;
}

.hero .subtitle {
    animation-delay: 0.5s;
}

.hero .cta-button {
    animation-delay: 0.7s;
}

.logo-phillips {
    animation-delay: 0.9s;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero .subtitle {
        font-size: 1.3rem;
    }
    .logo-phillips {
        max-height: 100px;
    }
    .hero-card {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 var(--spacing-lg);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    .hero-texto {
        align-items: center;
    }
    .hero .cta-button {
        align-self: center;
        min-width: 180px;
    }
    .logo-phillips {
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 170px 0 var(--spacing-lg);
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero .subtitle {
        font-size: 1.1rem;
    }
    .logo-phillips {
        max-height: 60px;
    }
    .hero-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .hero .cta-button {
        min-width: 160px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
} 