* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: #f5f5f5;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* melhora o scroll para âncoras com header fixo */
#inicio,
#destinos,
#hoteis,
#passagens,
#contato {
    scroll-margin-top: 90px;
}



/* ESTILO MENU */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f8c400;
    transition: 0.5s;
    z-index: 99;
    box-shadow: 0 0 8px #00000061;
}

header .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header .logo img {
    max-width: 50px;
    cursor: pointer;
    transition: 0.2s;
    display: block;
}

header .logo img:hover {
    transform: scale(1.05);
}

header .menu-desktop nav ul li {
    display: inline-block;
    margin: 0 40px;
}

header .menu-desktop nav ul li a {
    color: #1b1b1b;
    display: inline-block;
    transition: 0.2s;
}

header .menu-desktop nav ul li a:hover {
    transform: scale(1.05);
}

header .btn-contato button {
    width: 140px;
    height: 40px;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #1b1b1b;
    border-radius: 2px;
    color: #1b1b1b;
    cursor: pointer;
    transition: 0.2s;
}

header .btn-contato button:hover {
    color: #1b1b1b;
    background-color: #fff;
    border: 1px solid #1b1b1b;
    transform: scale(1.05);
}



/* ESTILO MENU DINÂMICO */
header.rolar {
    background-color: #f5f5f5;
    box-shadow: 0 0 8px #00000061;
}



/* ESTILO MENU MOBILE */
header .btn-menu-mobile {
    display: none;
    position: relative;
    z-index: 99;
}

header .btn-menu-mobile div {
    background-color: #1b1b1b;
    height: 3px;
    margin: 10px 0;
    transition: 0.2s;
}

header .btn-menu-mobile .line-mobile-1 {
    width: 30px;
}

header .btn-menu-mobile .line-mobile-2 {
    width: 20px;
}

header .btn-menu-mobile .line-mobile-1.ativo1 {
    transform: rotate(45deg) translate(30%);
    background-color: #f8c400;
}

header .btn-menu-mobile .line-mobile-2.ativo2 {
    transform: rotate(-45deg) translate(30%);
    width: 30px;
    background-color: #f8c400;
}



/* ESTILO MENU MOBILE */
header .menu-mobile {
    width: 0;
    height: 0;
    background-color: #1b1b1b;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

header .menu-mobile nav {
    width: 100%;
}

header .menu-mobile nav ul a {
    color: #f8c400;
    font-size: 1.5rem;
    display: block;
    padding: 12px 0;
}

header .menu-mobile nav ul a:hover {
    background-color: #fff;
    color: #1b1b1b;
}

header .menu-mobile.abrir {
    width: 50%;
    height: 100vh;
}

body.no-overflow {
    overflow: hidden;
}



/* ESTILO SEÇÃO HERO */
section.hero-site {
    height: 100vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%), url("../img/bg-inicio-site.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    image-rendering: crisp-edges;
}

.hero-site .interface {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .text-hero h1 {
    font-size: 3rem;
    color: #f8c400;
    line-height: 70px;
    font-weight: 200;
}

.hero-site .text-hero h1 span {
    display: block;
    font-weight: 800;
    font-size: 5rem;
}

.hero-site .text-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 20px 0;
    color: #fff;
}

.hero-site .text-hero p span {
    display: block;
}

.hero-site button {
    width: 240px;
    height: 40px;
    font-size: 1rem;
    background-color: transparent;
    border: solid 1px #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.hero-site button:hover {
    color: #1b1b1b;
    background-color: #fff;
    transform: scale(1.05);
}



/* ESTILO SEÇÃO VANTAGENS */
section.vantagens {
    padding: 8rem 0;
}

.vantagens .itens-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.vantagens .itens-container .img-itens img {
    max-width: 480px;
}

.vantagens .itens-container .txt-itens h3 {
    font-size: 3rem;
    line-height: 50px;
    margin-bottom: 20px;
}

.vantagens .itens-container .txt-itens h3 span {
    font-weight: 300;
}



/* ESTILO SEÇÃO CONTATO */
section.contato {
    padding: 8rem 0;
    background-color: #fff;
}

.txt-contato,
.icons-contato {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3 {
    font-size: 2.5rem;
    line-height: 50px;
    font-weight: 300;
}

.contato .txt-contato h3 span {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
}

.contato .icon-contato a {
    text-decoration: none;
}

.contato .icons-contato button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;

    /* ✅ evita estourar em notebook/tablet */
    width: min(100%, 520px);
    min-width: 0;

    height: 60px;
    margin: 0 0 20px auto;

    background-color: transparent;
    border: 1px solid #1b1b1b;
    cursor: pointer;
    transition: 0.5s;
}

.contato .icons-contato button:hover {
    background-color: #1b1b1b;
    color: #fff;
}

.contato .icons-contato button i {
    font-size: 1.4rem;
}

.contato .icons-contato button p {
    font-size: 1rem;
}



/* ESTILO SEÇÃO HOTÉIS */
section.hoteis {
    display: flex;
    align-items: center;
    text-align: center;
    height: 600px;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 0%), url(../img/hotel-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hoteis .info-hoteis {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    z-index: 99;
}

.hoteis .info-hoteis h3 {
    font-size: 3rem;
    line-height: 50px;
    font-weight: 200;
}

.hoteis .info-hoteis h3 span {
    display: block;
    font-weight: 600;
}

.hoteis p {
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.hoteis button {
    width: 240px;
    height: 40px;
    font-size: 1rem;
    background-color: transparent;
    border: solid 1px #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.hoteis button:hover {
    color: #1b1b1b;
    background-color: #fff;
    border: 1px solid #1b1b1b;
    transform: scale(1.05);
}



/* ESTILO SEÇÃO COMO FUNCIONA? */
section.como-funciona {
    padding: 8rem 0;
}

.text-como-funciona,
.cards-como-funciona {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.como-funciona .text-como-funciona {
    position: sticky;
    top: 50%;
    padding-bottom: 35px;
}

.como-funciona .text-como-funciona h3 {
    font-size: 4rem;
    line-height: 60px;
    font-weight: 300;
}

.como-funciona .text-como-funciona h3 span {
    display: block;
    font-weight: 700;
}

.como-funciona .cards-como-funciona .card-funciona {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    border: 2px solid #1b1b1b;
    padding: 20px;
}

.como-funciona .cards-como-funciona .card-funciona h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.como-funciona .cards-como-funciona .card-funciona h4 span {
    font-weight: 300;
}

.como-funciona .cards-como-funciona .card-funciona p {
    line-height: 20px;
}

.como-funciona .cards-como-funciona .card-funciona img {
    max-width: 100px;
}



/* ESTILO SEÇÃO FOOTER */
footer {
    background-color: #f8c400;
    width: 100%;
    text-align: center;
    padding: 4rem 0;
}

footer .top-footer button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #1b1b1b;
    background-color: transparent;
    color: #1b1b1b;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.5s;
}

footer .top-footer button:hover {
    background-color: #1b1b1b;
    color: #fff;
    border: 1px solid #fff;
}

footer .middle-footer {
    margin: 20px 0;
}

footer .middle-footer a {
    color: #1b1b1b;
    margin: 0 20px;
}

footer .botton-footer {
    border-top: 1px solid #1b1b1b;
}

footer .botton-footer p {
    color: #1b1b1b;
    margin-top: 10px;
}