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

body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background:
        linear-gradient(to bottom,
            rgba(255,243,176,.9),
            rgba(255,152,0,.75),
            rgba(77,208,225,.75)
        ),
        url("../imagens/background-praia.jpg");
    background-size: cover;
    color: #2b2b2b;
}

.header {
    max-width: 1200px;
    margin: auto;
}

.logo {
    background: linear-gradient(to bottom, #ff9800, #ff5722);
    padding: 20px 0;
}

.logo img {
    width: 90%;
    max-width: 420px;
}

/* 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: 36px;
    height: 24px;
    border-radius: 6px;
}

.lang-btn.active {
    box-shadow: 0 0 0 3px #00bcd4;
}

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

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

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

.menu a {
    background: orangered;
    color: #88d0fa;
    padding: 10px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* CONTEÚDO */
h1 {
    margin: 30px 10px;
    color: orangered;
}

.programacao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px;
}

.programacao img {
    width: 100%;
    border-radius: 12px;
    cursor: zoom-in;
}

.descricao {
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 20px;
}

.overlay {
    pointer-events: none;
}

/* PATROCÍNIO */
.Patrocinio img {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}


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;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 10px;
}

/* BOTÃO FECHAR */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* CURSOR ZOOM */
.programacao img {
    cursor: zoom-in;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: linear-gradient(to bottom, #ff9800, #ff5722);
    }

    .menu.active {
        display: flex;
    }
}