/* Header */
#header {
    position: relative;
    height: calc(100vh - var(--nav-height)); /* ocupa a altura restante da tela */
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    overflow: hidden; /* Impede vazamento de conteúdo */
}

#videoHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#headerContent {
    position: relative;
    color: white;
    text-align: center;
    z-index: 1;
    padding: 1rem;
}


#headerContent h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

#headerContent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; 
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    color: #D9A673;
    max-width: 600px;
    font-style: italic;
}


@media(max-width: 768px){
  
    #headerContent h1{
        font-size: 2.5rem;
        margin-bottom: 1rem;
        max-width: 600px;
    }

    #headerContent h2{
        font-size: 1.2rem;
        max-width: 600px;
    }
}