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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
}

body.modal-aberto {
    overflow: hidden;
}

/* MODAL IDIOMA */
.modal-idioma {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-idioma.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.box-idioma {
    width: 100%;
    max-width: 560px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.25s ease;
}

.modal-idioma.ativo .box-idioma {
    transform: translateY(0);
}

.subtitulo-modal {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #9a9a9a;
}

.box-idioma h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    color: #fff;
}

.box-idioma p {
    font-size: 15px;
    color: #b5b5b5;
    margin-bottom: 30px;
}

.opcoes-idioma {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.opcoes-idioma button {
    padding: 16px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.opcoes-idioma button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container-navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    display: block;
}

.menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.menu li {
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    color: #666;
    transition: color 0.3s ease;
}

.menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.menu li:hover {
    color: #000;
}

.menu li:hover::after,
.menu li.ativo::after {
    width: 100%;
}

.menu li.ativo {
    color: #000;
    font-weight: 600;
}

.menu a {
    text-decoration: none;
    color: inherit;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.imagem-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.conteudo-hero {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
}

.conteudo-hero h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #fff;
}

/* COLEÇÃO */
.colecao {
    background: #000;
    padding: 120px 40px;
}

.container-colecao {
    max-width: 1400px;
    margin: 0 auto;
}

.titulo-colecao {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.grid-pranchas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card-prancha {
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.card-prancha img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
    opacity: 1;
    visibility: visible;
}

.card-prancha:hover {
    transform: translateY(-10px);
}

.card-prancha:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* IMPORTANTE:
   Removi o efeito que deixava as outras pranchas apagadas.
   Agora todas ficam visíveis sempre. */

.card-prancha h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.preco {
    display: block;
    margin: 6px 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.card-prancha p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.botao-prancha {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 16px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.botao-prancha:hover {
    background: #fff;
    color: #000;
}

.area-botao-colecao {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.botao-explorar-pranchas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 18px 28px;
    background: #f3f3f3;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.botao-explorar-pranchas:hover {
    background: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}

/* SEÇÃO 01 */
.secao-performance {
    background: #121212;
    padding: 120px 40px;
}

.container-secao-performance {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.imagem-secao-performance {
    position: relative;
}

.imagem-secao-performance::before {
    content: "";
    position: absolute;
    top: -28px;
    left: -28px;
    width: 140px;
    height: 110px;
    background: rgba(255, 255, 255, 0.04);
    z-index: 0;
}

.imagem-secao-performance img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.45s ease;
}

.imagem-secao-performance:hover img {
    transform: scale(1.02);
}

.conteudo-secao-performance {
    max-width: 560px;
}

.subtitulo-secao-performance {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f5f5f5;
}

.titulo-secao-performance {
    font-size: 64px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.texto-secao-performance {
    font-size: 18px;
    line-height: 1.7;
    color: #a8a8a8;
    margin-bottom: 22px;
}

.texto-secao-performance.destaque {
    color: #fff;
}

/* SEÇÃO 02 */
.secao-essencia {
    background: #050505;
    padding: 120px 40px;
}

.container-secao-essencia {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.conteudo-secao-essencia {
    max-width: 560px;
}

.subtitulo-secao-essencia {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f5f5f5;
}

.titulo-secao-essencia {
    font-size: 64px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.texto-secao-essencia {
    font-size: 18px;
    line-height: 1.7;
    color: #a8a8a8;
    margin-bottom: 22px;
}

.texto-secao-essencia.destaque {
    color: #fff;
}

.imagem-secao-essencia {
    position: relative;
}

.imagem-secao-essencia::before {
    content: "";
    position: absolute;
    top: -28px;
    left: -28px;
    width: 140px;
    height: 110px;
    background: rgba(255, 255, 255, 0.04);
    z-index: 0;
}

.imagem-secao-essencia img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.45s ease;
}

.imagem-secao-essencia:hover img {
    transform: scale(1.02);
}

/* SEÇÃO FINAL */
.secao-final {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.imagem-secao-final {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-secao-final {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.conteudo-secao-final {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.conteudo-secao-final h2 {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #fff;
    text-transform: uppercase;
}

.conteudo-secao-final h2 span {
    display: block;
    margin-top: 8px;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    font-weight: 800;
}

/* FOOTER */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 40px;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-esquerda {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 1px;
    color: #6f6f6f;
}

.footer-direita {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-direita a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6f6f6f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-direita a:hover {
    color: #fff;
    transform: translateY(-1px);
}

/* ANIMAÇÃO SCROLL */
.animar {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.animar.ativo {
    opacity: 1;
    transform: translateY(0);
}

/* VÍDEO DO BANNER PRINCIPAL */
.video-banner {
    display: block;
    background: #000;
}


/* BOTÃO GLOBAL DO SOM DO MAR — ESTADO REAL DO ÁUDIO */
.botao-audio-mar {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1600;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.botao-audio-mar:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

.botao-audio-mar.ativo {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.botao-audio-mar.aguardando-interacao {
    border-color: rgba(255, 255, 255, 0.72);
    animation: pulsoBotaoSom 1.6s ease-in-out infinite;
}

@keyframes pulsoBotaoSom {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* FALLBACK:
   Se por algum motivo o JavaScript falhar, os conteúdos aparecem.
   Isso evita tela vazia. */
body.js-falhou .animar,
body.sem-animacao .animar {
    opacity: 1;
    transform: none;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .menu {
        display: none;
    }

    .conteudo-hero h1 {
        font-size: 60px;
    }

    .grid-pranchas,
    .container-secao-performance,
    .container-secao-essencia {
        grid-template-columns: 1fr;
    }

    .titulo-secao-performance,
    .titulo-secao-essencia,
    .conteudo-secao-final h2 {
        font-size: 46px;
    }
}

@media (max-width: 600px) {
    .container-navbar {
        padding: 14px 20px;
    }

    .conteudo-hero {
        left: 20px;
    }

    .conteudo-hero h1 {
        font-size: 42px;
    }

    .colecao,
    .secao-performance,
    .secao-essencia {
        padding: 90px 20px;
    }

    .titulo-colecao {
        font-size: 26px;
    }

    .titulo-secao-performance,
    .titulo-secao-essencia,
    .conteudo-secao-final h2 {
        font-size: 34px;
        line-height: 1.02;
    }

    .texto-secao-performance,
    .texto-secao-essencia {
        font-size: 16px;
    }

    .botao-explorar-pranchas {
        width: 100%;
        min-width: auto;
    }

    .footer {
        padding: 24px 20px;
    }

    .container-footer {
        flex-direction: column;
        justify-content: center;
    }

    .footer-logo {
        text-align: center;
    }

    .box-idioma {
        padding: 36px 24px;
    }

    .box-idioma h2 {
        font-size: 28px;
    }

    .opcoes-idioma {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   MENU RESPONSIVO + AJUSTES PARA TODOS OS APARELHOS
===================================================== */
:root {
    --altura-navbar: 78px;
}

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

img,
video,
canvas,
svg {
    max-width: 100%;
}

.navbar,
.container-navbar {
    min-height: var(--altura-navbar);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1012;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 1.5px;
    background: #090909;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.22s ease;
}

.menu-toggle.ativo span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.ativo span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.ativo span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: var(--altura-navbar) 0 0;
    z-index: 998;
    border: 0;
    background: rgba(0, 0, 0, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-aberto {
    overflow: hidden;
}

/* WHATSAPP GLOBAL — CANTO INFERIOR ESQUERDO */
.botao-whatsapp-global {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.76);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.whatsapp-simbolo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
}

.botao-whatsapp-global:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.hero,
.secao-final,
.sobre-hero,
.sobre-final {
    min-height: 100svh;
}

@media (min-width: 1600px) {
    .container-navbar,
    .container-colecao,
    .container-secao-performance,
    .container-secao-essencia,
    .container-footer {
        max-width: 1520px;
    }

    .conteudo-hero {
        left: max(60px, calc((100vw - 1520px) / 2));
    }
}

@media (max-width: 1200px) {
    .container-navbar,
    .colecao,
    .secao-performance,
    .secao-essencia {
        padding-left: 28px;
        padding-right: 28px;
    }

    .grid-pranchas {
        gap: 28px;
    }
}

@media (max-width: 1100px) {
    :root {
        --altura-navbar: 74px;
    }

    .container-navbar {
        padding: 10px 24px;
    }

    .logo img,
    .sobre-page .logo img {
        height: 48px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu {
        display: block !important;
        position: fixed;
        top: var(--altura-navbar);
        right: 0;
        width: min(380px, 88vw);
        height: calc(100dvh - var(--altura-navbar));
        z-index: 1005;
        padding: 34px 28px;
        overflow-y: auto;
        background: #fff;
        box-shadow: -22px 24px 70px rgba(0, 0, 0, 0.22);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.38s cubic-bezier(.16, 1, .3, 1), visibility 0.38s ease;
    }

    body.menu-aberto .menu {
        transform: translateX(0);
        visibility: visible;
    }

    .menu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.09);
        font-size: 13px;
        letter-spacing: 0.18em;
    }

    .menu li::after {
        display: none;
    }

    .menu a {
        display: flex;
        width: 100%;
        min-height: 62px;
        align-items: center;
        justify-content: space-between;
        padding: 12px 4px;
    }

    .menu a::after {
        content: "→";
        font-size: 17px;
        letter-spacing: 0;
        opacity: 0.38;
    }

    .menu-overlay {
        display: block;
    }

    body.menu-aberto .menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .conteudo-hero {
        left: 32px;
        right: 32px;
    }

    .conteudo-hero h1 {
        font-size: clamp(48px, 8vw, 68px);
    }

    .grid-pranchas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .container-secao-performance,
    .container-secao-essencia {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .imagem-secao-performance img,
    .imagem-secao-essencia img {
        width: min(100%, 680px);
        max-width: none;
        margin: 0 auto;
    }

    .container-secao-essencia .imagem-secao-essencia {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --altura-navbar: 68px;
    }

    .container-navbar {
        padding: 8px 18px;
    }

    .logo img,
    .sobre-page .logo img {
        height: 44px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .menu {
        width: min(350px, 92vw);
        padding: 24px 22px;
    }

    .conteudo-hero {
        left: 22px;
        right: 22px;
        top: 54%;
    }

    .conteudo-hero h1 {
        font-size: clamp(40px, 12vw, 58px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .colecao,
    .secao-performance,
    .secao-essencia {
        padding: 82px 22px;
    }

    .grid-pranchas {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .card-prancha {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .card-prancha img {
        height: clamp(300px, 68vw, 430px);
    }

    .titulo-secao-performance,
    .titulo-secao-essencia,
    .conteudo-secao-final h2 {
        font-size: clamp(33px, 9vw, 46px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .footer {
        padding: 34px 22px 96px;
    }

    .container-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 26px;
    }

    .footer-direita {
        justify-content: center;
    }

    .box-idioma {
        max-height: calc(100dvh - 32px);
        overflow-y: auto;
        padding: 34px 22px;
    }

    .opcoes-idioma {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .conteudo-hero {
        left: 18px;
        right: 18px;
    }

    .colecao,
    .secao-performance,
    .secao-essencia {
        padding-left: 18px;
        padding-right: 18px;
    }

    .botao-explorar-pranchas,
    .botao-prancha {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .botao-whatsapp-global,
    .botao-audio-mar {
        bottom: 12px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        letter-spacing: 0;
    }

    .botao-whatsapp-global {
        left: 12px;
    }

    .botao-audio-mar {
        right: 12px;
    }

    .whatsapp-simbolo {
        width: auto;
        height: auto;
        border: 0;
        font-size: 21px;
    }

    .botao-audio-mar::before {
        content: "♪";
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .container-navbar {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo img,
    .sobre-page .logo img {
        height: 40px;
    }

    .conteudo-hero h1 {
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animar,
    .reveal,
    .reveal-img {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* AJUSTE DO VÍDEO PRINCIPAL NO CELULAR */
@media (max-width: 768px) {
    .hero .video-banner {
        object-fit: cover;
        object-position: 28% center;
    }
}

@media (max-width: 480px) {
    .hero .video-banner {
        object-position: 24% center;
    }
}