/* Layout central "Em breve" - escopado a esta página */
.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    text-align: center;
}

.coming-soon-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 700px;
}

.coming-soon .title {
    font-family: 'Korataki', 'SF Pro Display', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.05;
    font-size: clamp(24px, 8vw, 58px);
    background: linear-gradient(90deg, #969191 33.654%, #000000 97.981%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.coming-soon .subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-text-primary);
    opacity: 0.85;
    font-size: clamp(16px, 2.2vw, 28px);
    max-width: min(90vw, 860px);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .coming-soon { gap: 3.2vh; }
}


