* {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    box-sizing: border-box;
}

body {
    /* Melhora renderização de texto */
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

/* Header */
nav {
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-contato:hover{
    cursor: pointer;
    transform: scale(1.03);
    transition: 0.2s;
}

.logo-aliada {
    margin: 12px 0;
}

.div-menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-menu input {
    width: 25rem;
    height: 34px;
    background-color: transparent;
    border: solid white 1px;
    border-radius: 26px;
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.div-menu label {
    position: relative;
    right: -11.8rem;
    top: 11px;
}

.div-menu label img {
   height: 50px;
}

.div-menu-itens {
    display: flex;
    margin-top: 15px;
}

.div-menu-itens ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.div-menu-itens ul li a {
    color: white;
    font-size: 0.9rem;
}

.div-menu-itens ul li a::before {
    content: '';
    background: white;
    display: block;
    position: relative;
    bottom: -22px;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.div-menu-itens ul li a:hover::before {
  width: 100%;
}

.div-icones {
    height: 100%;
    margin: auto 0 auto auto;
}

.div-icones ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.circle {
    position: absolute;
    bottom: -60px;
    background-color: white;
    width: 190px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    left: 50%;
    transform: translate(-50%, 0);
}

.circle img {
    margin: 8px auto;
    height: 35px;
    transition: 0.6s;
}

.circle img:hover {
    cursor: pointer;
    transform: scale(1.2);
    transform: translateY(5px);
}

.logo-aliada {
    height: 130px;
    margin-top: 10px;
}

/* Barra de pesquisa */
#opcoes {
    display: none;
    position: absolute;
    top: 80px;
    background-color: #b8c2c7;
    padding: 15px;
    border-radius: 10px;
    z-index: 99;
}

#opcoes > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#opcoes > ul > a {
    text-decoration: none;
    color: #053048;
}

/* Footer */
footer {
    background-color: #053048;
    height: 190px;
    width: 100%;
}

footer p {
    color: white;
    font-weight: 200;
}

.aviao-footer {
    height: 20px;
}

.logo-footer {
    margin-top: -15px;
    height: 165px;
}

.direitos-p {
    margin-top: -15px;
}

#message-container {
    background-color: #a9cadb;
    color: #053048;
    border: 1px solid #053048;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    opacity: 1;
    transition: opacity 1s ease-out;
}

/* Classe para ocultar o elemento */
.hidden {
    display: none;
}

.fade-out {
    opacity: 0 !important;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    top: 0;
    z-index: 99;
}

.error-message ul {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
}

.error-message li {
    margin-bottom: 5px;
}

/* Classes */
.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.mt-25 {
    margin-top: 25px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-5 {
    margin-left: 5px;
}

.opacity-50 {
    opacity: 0.5;
}

.fonts-08 {
    font-size: 0.8rem;
}

.fonts-1 {
    font-size: 1rem;
}

.fonts-12 {
    font-size: 1.2rem;
}

.fonts-18 {
    font-size: 1.8rem;
}

.fonts-28 {
    font-size: 2.8rem;
}

.fonts-5 {
    font-size: 5rem;
}

.fonts-7 {
    font-size: 7rem;
}

.fontw-900 {
    font-weight: 900;
}

.fontw-700 {
    font-weight: 700;
}

.fontw-600 {
    font-weight: 600;
}

.fontw-500 {
    font-weight: 500;
}

.fontw-300 {
    font-weight: 300;
}

.fontw-200 {
    font-weight: 200;
}

.lineh-1 {
    line-height: 1;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.textalign-left {
    text-align: left;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-50 {
    gap: 50px;
}

.mobile-menu {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 12px;
}

.hamburger {
    margin-top: -5px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 15px; /* Espaço entre o menu desktop e o ícone */
    z-index: 1001; /* Garante que fique acima do menu que vai abrir */
}

.hamburger span,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    transition: transform 0.4s ease-in-out;
}

/* Animação do Hambúrguer para "X" */
.hamburger.active::before {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active::after {
    transform: translateY(-10.2px) rotate(-45deg);
}

.hamburger.active span {
    opacity: 0; 
}

/* --- Menu do Hambúrguer (Escondido por padrão) --- */
.nav-hamburger-content {
    position: absolute;
    top: 70%; /* Começa logo abaixo do header */
    right: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;

    /* Lógica para esconder/mostrar com transição suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    color: #053048;
    z-index: 1000;
}

.nav-hamburger-content h2{
    padding-left: 1.5rem;
    color: #053048;
    letter-spacing: -0.5px !important;
}

.hamburguer-links {
    padding-left: 1.5rem;
    color: #053048;
}

.nav-hamburger-content button {
    margin-left: 0.5rem;
    color: #053048;
    background-color: #fff;
    margin-right: 5px;
    padding: 5px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.nav-hamburger-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-device-width: 375px) and (max-device-width: 575px) {
    .circle {
        display: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) { 
    html {
        font-size: 10px;
    }

    .logo-aliada {
        height: 8rem;
    }

    .circle {
        display: none;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) { 
    html {
        font-size: 14px;
    }

    .logo-aliada {
        height: 8rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) { 
    html {
        font-size: 16px;
    }

    .logo-aliada {
        height: 8rem;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    html {
        font-size: 16px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
    html {
        font-size: 18px;
    }
}

@media (orientation: portrait) and (max-width: 767px) {
    .logo-aliada {
        height: 5rem;
    }

    nav {
        padding: 0 10px;
    }

    .div-menu label {
        position: relative;
        right: -7.5rem;
        top: 12px;
    }

    .div-menu label img {
    height: 44px;
    }

    .div-menu input {
        width: 17rem;
        height: 28px;
    }

    .div-menu-itens {
        display: none;
    }

    .div-icones ul li img, .img-icone {
        width: 2rem;
    }

    .div-menu-itens ul {
        gap: 15px;
    }

    .circle {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #opcoes {
        top: 52px;
    }

    footer {
        background-color: #053048;
        height: 100px;
        width: 100%;
    }

    footer .fonts-12 {
        font-size: 1rem;
    }

    footer .fonts-1 {
        font-size: 0.9rem;
    }

    .aviao-footer {
       display: none;
    }

    .logo-footer {
        margin-top: -15px;
        height: 50px;
    }

    .direitos-p {
        margin-top: 0px;
    }

    .footer-icone {
        height: 20px;
    }

    .hr-desktop {
        display: none;
    }

    footer .gap-5 {
        gap: 3px
    }

    footer .ml-5 {
        margin-left: 3px;
    }

    footer .mt-25 {
        margin-top: 15px;
    }
}