body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a1b;
    color: #fff;
}

header {
    background: #fff;
    color: #222;
    padding: 0.5rem 0 0 0;
    text-align: center;
    border-bottom: none;
    box-shadow: none;
}

.logo {
    max-width: 160px;
    margin: 1.5rem auto 1rem auto;
    display: block;
}

nav {
    background: #fff;
    margin-top: 0.5rem;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding-bottom: 0.7rem;
}

nav a {
    color: #23272a;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.22rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    transition: color 0.2s, font-weight 0.2s;
}

nav a:hover {
    color: #990f0f;
    background: none;
    font-weight: 400;
}

nav .active, nav a.active {
    color: #990f0f;
    font-weight: bold;
    background: none;
}

.menu-divider {
    width: 100%;
    height: 5px;
    background: #990f0f;
    margin: 1.2rem auto 1.7rem auto;
    border: none;
}

main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1, h2 {
    color: #fff;
}

.historia, .aventuras, .videos, .blog, .produtos, .patrocinadores, .contato {
    margin-bottom: 2.5rem;
    background: #23272a;
    border-radius: 10px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px rgba(20,57,122,0.10);
}

.fotos-aventuras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
    justify-content: center;
}

.foto-exemplo, .video-exemplo, .produto-exemplo, .patrocinador-exemplo {
    background: #14397a;
    color: #fff;
    border-radius: 8px;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(20,57,122,0.10);
}


.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-photobook {
    display: inline-block;
    background: #1a428a;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(20,57,122,0.10);
}
.btn-photobook:hover {
    background: #16376e;
    transform: scale(1.04);
}

footer {
    background: #23272a;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

iframe {
    background: #181a1b;
    border-radius: 8px;
}

.foto-aventura {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(20,57,122,0.10);
    border: 3px solid #23272a;
    transition: transform 0.2s, box-shadow 0.2s;
}
.foto-aventura:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(20,57,122,0.18);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 26, 27, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
    text-shadow: 0 2px 8px #000;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
    z-index: 1010;
    text-shadow: 0 2px 8px #000;
    transform: translateY(-50%);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

.lightbox-desc {
    color: #fff;
    text-align: center;
    margin-top: 0.7rem;
    font-size: 1.08rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.01em;
    min-height: 1.2em;
}

@media (max-width: 700px) {
    .logo {
        max-width: 110px;
        margin: 1rem auto 0.7rem auto;
    }
    nav ul {
        font-size: 1rem;
        gap: 1rem;
        padding-bottom: 0.4rem;
    }
    .fotos-aventuras, .mosaico-videos, .posts-blog, .lista-produtos, .lista-patrocinadores {
        flex-direction: column;
        align-items: center;
    }
    .foto-exemplo, .video-exemplo, .produto-exemplo, .patrocinador-exemplo {
        width: 90vw;
        max-width: 320px;
        height: 100px;
    }
    .foto-aventura {
        width: 90vw;
        max-width: 320px;
        height: 100px;
    }
    .lightbox-img {
        max-width: 98vw;
        max-height: 60vh;
    }
    .close-lightbox {
        top: 10px;
        right: 16px;
        font-size: 2rem;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 2.2rem;
        padding: 0 8px;
    }
    .menu-divider {
        margin-bottom: 1rem;
    }
}

.img-post {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.data-post {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-custom {
    background: #990f0f;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 2.5rem 1rem 1.5rem 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-col {
    flex: 1 1 220px;
    text-align: center;
    min-width: 180px;
}
.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}
.footer-logo {
    margin-top: 1.2rem;
    max-width: 110px;
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.footer-logo-central {
    max-width: 80px;
    max-height: 80px;
}
.footer-indica {
    color: #ffe6e6;
    font-size: 0.95rem;
}
.footer-fone {
    color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.2s, color 0.2s;
}
.footer-link:hover {
    text-decoration: underline;
    color: #ffe6e6;
}
@media (max-width: 900px) {
    .footer-custom {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
}

.modal-produto {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 26, 27, 0.92);
    justify-content: center;
    align-items: center;
}
.modal-produto.ativo {
    display: flex;
}
.modal-conteudo {
    background: #23272a;
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    text-align: center;
    max-width: 600px;
    max-height: 95vh;
    position: relative;
}
.modal-img-produto {
    max-width: 350px;
    max-height: 260px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background: #14397a;
}
.fechar-modal {
    position: absolute;
    top: 12px;
    right: 22px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2010;
    text-shadow: 0 2px 8px #000;
}
@media (max-width: 700px) {
    .modal-conteudo {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 99vw;
        max-height: 90vh;
    }
    .modal-img-produto {
        max-width: 98vw;
        max-height: 60vw;
    }
    .fechar-modal {
        top: 6px;
        right: 10px;
        font-size: 1.5rem;
    }
}

.img-produto-lista {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}

.lista-produtos, .lista-patrocinadores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
    justify-content: center;
}

.mosaico-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    justify-items: center;
}

.mosaico-videos iframe {
    width: 100%;
    max-width: 340px;
    height: 190px;
    box-sizing: border-box;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .mosaico-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .mosaico-videos {
        grid-template-columns: 1fr;
    }
} 