/* Layout  */

html, body, #home {
    height: 100%;
    overflow-x: hidden; /*overflow define se aparece ou não barra de rolagem e se permite ou não rolar a página*/
    font-family: 'Inter', 'Roboto', sans-serif;
}



body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Ocupa toda a tela */
    background-image: url(../img/Contato.jpg); /* Substitua pelo caminho certo */
    background-attachment: fixed; /* Mantém a imagem fixa ao rolar a página */
    background-position: center center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição */
    background-size: cover; /* Garante que a imagem sempre cubra toda a tela */
    background-color: #000;
    
}


/* Barra de Navegação  */

nav.navbar-transparente {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
}


.navbar-light .navbar-nav .nav-link {
    color: #FFF;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ccc;
}


.navbar-light .navbar-nav .nav-link.active {
    /*color: #101820; /* Cor cinza para o estado hover e ativo
    background-color: #f0f0f0;
    text-decoration: underline;*/
    color: #fff;
    font-weight: bold;
}



.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255, .5);
}

/* Estrutura de conteúdos  */
/* Caixa de contato */
.contact-box {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.3);
    width: 80%; /* Ajusta a largura para telas menores */
    max-width: 450px;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centraliza os textos */
}

/* Texto da caixa */
.box-texto h3 {
    margin-bottom: 20px;
    font-size: 2em; /* Ajusta o tamanho da fonte para telas menores */
}

.box-texto a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.2em; /* Ajusta tamanho da fonte para links */
    display: block; /* Garante que cada link ocupe sua própria linha */
    margin-bottom: 10px;
}

.box-texto a:hover {
    text-decoration: underline;
}




/*  Small devices (landscape phones, 768px) */
@media (max-width: 768px) {   

    body {
        background-image: url(../img/Contatosmall.jpg); /* Substitua pelo caminho certo */
        background-size: contain; /* Faz a imagem caber na tela sem cortes */
        background-attachment: scroll; /* Em alguns celulares, o 'fixed' pode falhar */
    }

    .contact-box {
        left: 35%;
    }

    .box-texto h3 {
        font-size: 1.5em; /* Ajusta o tamanho da fonte para telas menores */
    }

    .box-texto h4 {
        font-size: 1.3em; /* Ajusta o tamanho da fonte para telas menores */
    }

    .box-texto a {    
    font-size: 0.9em; /* Ajusta tamanho da fonte para links */    
    }
}

