/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #2b2b2b;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 243, 176, 0.9),
            rgba(255, 152, 0, 0.75),
            rgba(77, 208, 225, 0.75)
        ),
        url("imagens/background-praia.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* HEADER */
header {
    max-width: 1200px;
    margin: auto;
}

/* LOGO COM DEGRADÊ */
.logo {
    width: 100%;
    background: linear-gradient(
        to bottom,
        #ff9800,
        #ff5722
    );
    padding: 20px 0;
}

.logo img {
    display: block;
    max-width: 420px;   /* controla o tamanho da logo */
    width: 90%;
    margin: auto;
}

/* =========================
   IDIOMAS
========================= */
.lang-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
}

.lang-btn {
    width: 36px;
    height: 24px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* HOVER */
.lang-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

/* FOCO ACESSIBILIDADE */
.lang-btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* IDIOMA ATIVO */
.lang-btn.active {
    box-shadow: 0 0 0 3px #00bcd4;
    transform: scale(1.12);
}

/* MENU */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin: 12px auto;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 4px;
    background: orangered;
    margin: 6px 0;
    border-radius: 4px;
    transition: 0.3s;
}

/* MENU LINKS */
.menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.menu a {
    background-color: orangered;
    color: rgb(136, 208, 250);
    padding: 10px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    background-color: rgb(136, 208, 250);
    color: orangered;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: linear-gradient(180deg, #ff9800, #ff5722);
        padding: 15px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        width: 90%;
        max-width: 300px;
        margin: auto;
        font-size: 18px;
    }
}

/* ================= MAIN ================= */
main {
    padding: 25px 10px;
}

h1 {
    font-size: 26px;
    color: orangered;
    margin-bottom: 25px;
}

h2 {
    font-size: 20px;
    margin: 25px 0;
}

/* ================= PACOTES ================= */
.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.img-wrap {
    position: relative;
    display: inline-block;
}

.img-wrap img {
    width: 100%;
    border-radius: 10px;
}

/* Overlay LOTADO */
.overlay-lotado {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 50%;
    max-width: 200px;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

.overlay-lotado1 {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 10%;
    max-width: 200px;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

/* ================= COMPRAR ================= */
.comprar img {
    width: 150px;
    max-width: 90%;
    margin: 20px auto;
    display: block;
}

/* =========================
   PATROCÍNIO
========================= */
.Patrocinio img {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}

/* ================= FOOTER ================= */
footer {
    background: linear-gradient(
        to right,
        #00bcd4,
        #4dd0e1
    );
    color: #004d40;
    text-align: center;
    font-weight: bold;
    padding: 12px 8px;
    font-size: 14px;
    line-height: 1.3;

    width: 100%;
}

footer span {
    display: inline;
    margin: 0;
    padding: 0;
}

@media (max-width: 480px) {
    footer {
        padding: 8px 6px;
        font-size: 8px;
        line-height: 1.2;
    }
}