/* ============================ PAGE: HOME ============================ */

/* Estilo para a seção de hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: white;
    animation: fadeInUp 0.6s ease-out;
}

/* Vídeo de fundo */
.cover-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

/* Vídeo de fundo */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    z-index: 1;
}

/* Conteúdo sobreposto */
.cover-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

/* Títulos e textos */
.cover-inner h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.cover-inner .lead {
    font-size: 20px;
    margin: 0 0 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cover-ctas {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    margin-top: auto;
    padding-bottom: 60px;
}

.cover-ctas .btn {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.cover-ctas .btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cover-ctas .btn:active {
    transform: translateY(0);
}

.cover-ctas .btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 2px;
}

.hero-frame {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    max-height: 420px;
    box-shadow: var(--shadow-lg);
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn,
.hero-actions .btn.primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.hero-actions .btn:hover,
.hero-actions .btn.primary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hero-actions .btn:active,
.hero-actions .btn.primary:active {
    transform: translateY(0);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px !important;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-section .btn {
    background: #fff;
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

.cta-section .btn:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cta-section .btn-outline {
    background: rgba(128, 128, 128, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.3);
}


@media (max-width: 420px) {
    .hero-frame {
        max-height: 220px;
    }

    .hero-actions {
        gap: 8px;
    }
}