/* --- CSS ATUALIZADO --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #f8f9fa;
    background-color: #0a0a0f;
    min-height: 100vh;
    overflow: hidden; /* Evita scrolls desnecessários */
}

/* Camada cinematográfica */
.cinematic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cinematic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.8) 0%, rgba(20, 25, 45, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: brightness(0.8) contrast(1.1);
}

.content-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh; /* Ocupa a altura total da tela */
    display: flex;
    flex-direction: column;
}

/* CENTRALIZAÇÃO DO CONTEÚDO PRINCIPAL */
.hero {
    flex: 1; /* Ocupa todo o espaço central */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;     /* Centraliza horizontalmente */
    text-align: center;
    padding: 20px;
}

#nome-dominio {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Botão Verde */
.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, #6CB446, #5a963a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(108, 180, 70, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 180, 70, 0.5);
}

/* Rodapé na base */
footer {
    padding: 40px 20px;
    text-align: center;
}

.footer-brand {
    text-decoration: none;
    color: white;
    display: inline-block;
}

footer h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}