/* Definições Globais e Variáveis */
:root {
    --color-primary: #FFF159;
    --color-secondary: #0928C0;
    --color-text-dark: #0D0C38;
    --font-title: 'Anton', sans-serif;
    --font-heading: 'Bakbak One', cursive;
    --header-height: 162px;
    --max-content-width: 1440px;
}

/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #0D0C38;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
}

body::before {
    content: '';
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-image: url('SITE CT IMAGENS/Images  Site CT/Contato Pagina 5.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}






/* ====== CONTEÚDO ====== */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.conteudo {
    max-width: 1100px;
    width: 100%;
}


/* ====== TOPO ====== */
.header-principal {
    background-color: #FFF159; /* Amarelo */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 162px;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.header__logo {
    position: absolute;
    left: 220px; /* Ajustado para 220px */
    top: 21px; /* Ajustado para 21px */
    width: 132px;
    height: 101px;
}

.titulo-site {
    font-family: 'Anton', sans-serif;
    font-size: 96px;
    color: #0D0C38;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}




.nav-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.nav-principal li {
    margin: 0 20px;
}

.nav-principal a {
    color: #0928C0; /* Azul Forte */
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0.72px;
}


.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-secondary);
    text-decoration: none;
    letter-spacing: 0.72px;
    white-space: nowrap;
}

.nav__link:hover {
    opacity: 0.7;
}

.titulo-pagina {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0D0C38;
    text-align: center;
}

.texto-pagina p {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

/* ---------------------------------------------------- */
/* SEÇÃO DE CONTATO */
/* ---------------------------------------------------- */

.titulo-contato {
    font-size: 48px;
    color: #141501;
    letter-spacing: 1.44px;
    margin-bottom: 40px;
}

.contato-item {
    font-size: 48px;
    color: #141501;
    letter-spacing: 1.44px;
    margin: 30px 0;
}

.contato-item a {
    color: #141501;
    text-decoration: underline;
}

/* ---------------------------------------------------- */
/* IMAGEM DE FUNDO (BACKGROUND) */
/* ---------------------------------------------------- */
.background-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Coloca a imagem atrás de tudo */
}

.background-cover img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza a imagem no container */
    object-fit: cover; /* Garante que cubra o espaço, cortando se necessário */
}


/* ====== RODAPÉ ====== */
.rodape {
    background: #0D0C38;
    padding: 40px 20px;
    text-align: center;
    color: white;
    margin-top: auto;
}

.rodape ul {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.rodape a {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
}

.rodape a:hover {
    opacity: 0.7;
}

.rodape p {
    font-size: 14px;
    opacity: 0.8;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }

    .header__logo {
        width: 100px;
        height: 76px;
    }

    .header__title {
        font-size: 60px;
        letter-spacing: 1.8px;
    }

    .header__nav-top {
        top: 95px;
    }

    .nav__link {
        font-size: 18px;
    }

    .titulo-pagina {
        font-size: 30px;
    }

    .texto-pagina p {
        font-size: 16px;
    }

    .rodape ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 100px;
    }

    .header__logo-and-title {
        flex-direction: column;
        gap: 10px;
    }

    .header__logo {
        width: 80px;
        height: 61px;
    }

    .header__title {
        font-size: 45px;
        letter-spacing: 1.35px;
    }

    .header__nav-top {
        top: 75px;
    }

    .header__nav-top ul {
        flex-direction: column;
        gap: 10px;
    }

    .nav__link {
        font-size: 16px;
    }

    .titulo-pagina {
        font-size: 25px;
    }

    .texto-pagina p {
        font-size: 14px;
    }

    .conteudo {
        padding: 0 10px;
        margin: 40px auto;
    }

    .rodape {
        padding: 20px 10px;
    }

    .rodape ul {
        gap: 10px;
    }
}
