@charset "UTF-8"; /* Define a codificação de caracteres como UTF-8 */

@font-face {
    font-family: 'Hypero';
    src: url(../fonts/HyperoRegular.otf) format('opentype');
}

@font-face {
    font-family: 'Cooperplate';
    src: url(../fonts/COPRGTL.TTF);
}

/* Variáveis globais de cor e fonte */
:root{
    --cor0: #37517E; /* Cor primária */
    --cor1: #488CCB; /* Cor secundária */
    --cor2: #00355F; /* Cor terciária */
    --cor3: #00319C;
    --cor4: #DFB235;

    --fonte01: 'Hypero', cursive;
    --fonte02: 'Cooperplate', Bold;
}

/* Reseta a margem e o padding de todos os elementos */
*{
    margin: 0px;
    padding: 0px;
}

/* Esconde a barra de rolagem, mas mantém a funcionalidade de rolagem */
html {
    overflow: -moz-scrollbars-none; /* Firefox */
    overflow-x: hidden;
    -ms-overflow-style: none; /* Internet Explorer e Edge */
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Opera */
}

/* Estilos para o elemento principal */
main{
    background-color: var(--cor3); /* Fundo da área principal */
    max-width: 100%; /* Largura máxima */
    margin: auto; /* Centraliza horizontalmente */
    margin-top: 74px; /* Config para main ficar abaixo do header */
    overflow-x: hidden;
}

body{
    background-color: var(--cor3);
}


/* Estilos para o cabeçalho */
.header {
    background-color: var(--cor3); /* Fundo do cabeçalho */
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1); /* Sombra do cabeçalho */
    position: fixed; /* Fixa o cabeçalho no topo */
    top:-1px;
    left:0;  
    width: 100%; /* Largura total */
    z-index:1; /* Coloca o cabeçalho à frente de outros elementos */
    float:left;
}

.header ul {
    margin: 30px 10px 0px 10px;
    padding: 0;
    list-style: none; /* Remove marcadores da lista */
    overflow: hidden;
}

#config{
    display: flex;
    gap: 0px;
    margin: 4px;
    padding: 1px;
}

li#lista-config{
    padding: 10px;
}

.header li a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    display: block;
    padding: 0.7em 0.5em;
    text-decoration: none; /* Remove sublinhado dos links */
    transition:.3s; /* Transição suave */
    border-bottom: 1px #f7f7f7 solid; /* Linha inferior nos links */
    color:white; /* Cor do texto dos links */
    margin: -6px;
}

.header li a:hover,
.header .btn-mobile:hover {
    font-size: 19px;
    background-color: transparent; /* Fundo ao passar o mouse */
    color:#fff; /* Cor do texto ao passar o mouse */
}

.header .logo {
    padding: 20px 15px 15px 15px;
    display: block;
    float: left;
}

img#logo-config{
    width: 201px;
}

.header .nav {
    clear: both;
    max-height: 0; /* Altura máxima inicial do menu (oculto) */
    transition: max-height .2s ease-out; /* Transição suave para a altura do menu */
}

.nav img{
    width: 18px;
    padding: 5px;
    border-radius: 10px;
}

.icon-instagram:hover{
    background-color: brown;
}

.icon-facebook:hover{
    background-color: var(--cor2);
}

.icon-youtube:hover{
    background-color: red;
}

.icon-linkedin:hover{
    background-color: var(--cor1);
}

/* Ícone do menu para dispositivos móveis */
.header .mobile-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 42px 10px 10px 10px;
    position: relative;
    user-select: none; /* Desabilita seleção de texto */
}

.header .mobile-icon .master-header {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .mobile-icon .master-header:before,
.header .mobile-icon .master-header:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .mobile-icon .master-header:before {
    top: 5px;
}

.header .mobile-icon .master-header:after {
    top: -5px;
}

/* Checkbox que controla a exibição do menu em dispositivos móveis */
.header .mobile-btn {
    display: none;
}

.header .mobile-btn:checked ~ .nav {
    max-height: 295px; /* Altura máxima do menu ao ser ativado */
}

.header .mobile-btn:checked ~ .mobile-icon .master-header {
    background: transparent;
}

.header .mobile-btn:checked ~ .mobile-icon .master-header:before {
    transform: rotate(-45deg); /* Rotaciona a barra superior do ícone do menu */
}

.header .mobile-btn:checked ~ .mobile-icon .master-header:after {
    transform: rotate(45deg); /* Rotaciona a barra inferior do ícone do menu */
}

.header .mobile-btn:checked ~ .mobile-icon:not(.steps) .master-header:before,
.header .mobile-btn:checked ~ .mobile-icon:not(.steps) .master-header:after {
    top: 0;
}

/* Estilos para o container */
.container {
    width:100%;
    float:left;
    margin-top:100px; /* Espaço superior para evitar sobreposição com o cabeçalho fixo */
}

/* Estilos para o conteúdo principal */
.content { 
    float:left; 
    width:92%; 
    margin:0 4%;  
}

/* Media query para telas maiores (910px e acima) */
@media (min-width: 910px) {
    .header li { 
    float:left; 
    }
    
    .header li a {
        padding: 15px 30px;
        margin-top: 10px;
        border-radius: 6px;
        transition:.3s;
        border-bottom:0; 
        transition: .3s;
        border-bottom: 0;
        padding: 0px;
        margin: 3px;
    }

    #config{
        gap: 0px;
    }

    .header .nav {
        clear: none;
        float: right;
        max-height: none; /* Remove a limitação de altura */
    }
    
    .header .mobile-icon { 
        display:none; /* Esconde o ícone do menu em telas maiores */
    }
}

.texto-termos{
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: var(--cor0);
    border-radius: 10px 10px 10px 10px;
    margin: 50px;
    padding: 30px;
}

.texto-termos h1, h2{
    font-family: var(--fonte02);
    color: var(--cor3);
}


.termos-politicas{
    background-color: white;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
}

.conteudo-termos{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-termos{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.conteudo-termos h2{
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    text-align: left;
    margin: 5px;
}

.conteudo-termos ul{
    padding: 50px;
    list-style-type: none;
}

.container-termos a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    color: black;
    text-decoration: none;
}

.container-termos li{
    font-family: Arial, Helvetica, sans-serif;
}

.container-termos a:hover{
    text-decoration: underline;
}

.conteudo-termos img{
    width: 201px;
    height: 45px;
    padding: 100px 0px 0px 60px;
}

footer{
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--cor3);
    color: white;
    text-align: center;
    height: 30px;
    padding: 20px 10px 24px 10px;
}
footer a{
    color: white;
}

.whatsappLink{
    position: fixed;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 23px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: 1px 1px 2px gray;
}

.whatsappLink:hover{
    background-color: #059d3d;
    transition: 0.5s;
}

.icon{
    margin-top: 13px;
    color: white;
    width: 31px;
}

.whatsappLink{
    position: fixed;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 23px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: 1px 1px 2px gray;
}

.whatsappLink:hover{
    background-color: #059d3d;
    transition: 0.5s;
}

.icon{
    margin-top: 13px;
    color: white;
    width: 31px;
}

/* TODOAS AS MEDIA SCREEN!!!!
/* Config responsividade para Tablets */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .container-termos{
        flex-direction: row;
        gap: 30px;
    }

    .conteudo-termos img{
        width: 201px;
    }

    .conteudo-termos ul{
        padding: 15px 0px 0px 0px;
    }

    .conteudo-termos a{
        font-size: 15px;
    }
}

/* Config responsividade para Celulares */
@media screen and (max-width: 767px){
    .container-termos{
        flex-direction: column;
        align-items: center;
    }

    .conteudo-termos img{
        width: 201px;
        padding: 10px 0px 0px 0px;
    }

    .conteudo-termos ul{
        padding: 25px;
    }
}

/* Config responsividade para Celulares antigos */
@media screen and (max-width: 470px){
    .contato-email {
        padding: 10px; /* Ajuste de padding para telas menores */
    }

    .conteudo-termos ul{
        padding: 25px;
    }

    .conteudo-termos a{
        font-size: 15px;
    }

    footer{
        padding: 15px 10px 40px 10px;
    }
}