/* Reset CSS e Variáveis Bases */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Tons neutros, sofisticados (agora invertidos para a experiência cinematográfica com fundo escuro) */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    
    /* Fundo neutro temporário - será encoberto pelo vídeo futuramente */
    --color-bg-neutral: #e8e6e1; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-neutral);
    overflow-x: hidden;
}

/* 
 * Elemento preparado para o vídeo de fundo 
 * Fixado atrás de tudo, cobrindo a tela toda.
 */
.video-container-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-neutral); /* Fundo caso o vídeo falhe */
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay escuro semitransparente */
    z-index: 2;
}

/* Cabeçalho Fixo Minimalista */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 4rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.4s ease;
}

.main-nav a:hover {
    opacity: 0.4;
}

.contact-btn {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid var(--color-text-primary);
    padding-bottom: 4px;
    transition: opacity 0.4s ease;
}

.contact-btn:hover {
    opacity: 0.5;
}

/* 
 * Overlay e Seções
 * O container principal é transparente para o vídeo de fundo aparecer.
 */
.content-overlay {
    position: relative;
    width: 100%;
    z-index: 10;
    background: transparent;
}

section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    background: transparent; /* Importante: sem fundos individuais */
}

/* Hierarquia e Tipografia Editorial */
.content-block {
    max-width: 650px;
    width: 100%;
}

.content-block h1, .content-block h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--color-text-primary);
}

.content-block h1 {
    font-size: clamp(3.5rem, 6vw, 7rem);
}

.content-block h2 {
    font-size: clamp(3rem, 5vw, 5.5rem);
}

.content-block p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Alinhamentos Solicitados */
.centered {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered p {
    max-width: 60%;
    text-align: center;
}

.left {
    margin-right: auto;
}

.left p {
    max-width: 80%;
}

.right {
    margin-left: auto;
}

.right p {
    max-width: 80%;
}

/* Responsividade Mobile */
@media (max-width: 900px) {
    .main-header {
        padding: 2rem 5%;
    }

    .main-nav {
        display: none; /* Simplificando no mobile, espaço para um menu hambúrguer futuramente */
    }
    
    section {
        padding: 6rem 5%;
    }

    /* No mobile, ajustamos os textos para aproveitar melhor a tela */
    .content-block {
        text-align: left;
    }
    
    .centered, .left, .right {
        margin: 0 auto;
        align-items: flex-start;
        text-align: left;
    }

    .centered p, .left p, .right p {
        max-width: 100%;
        text-align: left;
    }
}
