:root {
    --oceano: #8FB3B8;
    --oceano-escuro: #355E63;
    --creme: #F4F1EA;
    --areia: #E9E4DA;
}






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

body {
    background: var(--creme);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--oceano-escuro);
    line-height: 1.7;
}

/* ======================
   HERO
====================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
/* BOTÃO DO HERO — entrada atrasada */
.hero .btn-reserva {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* estado visível */
.hero .btn-reserva.visible {
    opacity: 1;
    transform: translateY(0);
}


.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo {
    position: fixed;
    width: 205px;
    top: 50%;
    left: 50%;
    z-index: 99999;

    opacity: 1; /* garante visÃ­vel desde o inÃ­cio */
    animation: logoMove 4.2s cubic-bezier(.22,.61,.36,1) forwards;
}



/* ======================
   BOTÃƒO
====================== */
.btn-reserva {
    padding: 16px 48px;
    border: 2px solid var(--creme);
    color: var(--creme);
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s ease;

    border-radius: 50px; /* cantos arredondados */
}

.btn-reserva:hover {
    background: var(--creme);
    color: var(--oceano-escuro);
    border: 3px solid #000000; /* borda preta de 5px */
}


.btn-contato {
    background: var(--oceano-escuro);
    color: var(--creme);
    border: none;
}

.btn-contato:hover {
    background: var(--creme);
    color: var(--oceano-escuro);
    border: 3px solid #000000;
}


/* ======================
   SECTIONS GERAIS
====================== */
.section {
    padding: 0;
}

.section.light {
    background: var(--creme);
}

.section.dark {
    background: var(--areia);
}

/* ======================
   TEXTO
====================== */
.text-col {
    padding: 120px 80px;
}

.text-col h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--oceano-escuro);
}

.text-justify {
    text-align: justify;
}

/* ======================
   IMAGENS BACKGROUND
====================== */
.bg-image {
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

/* ======================
   RESERVAS (DESTAQUE)
====================== */
#reservas {
    position: relative;
    min-height: 200px;
    background: var(--oceano-escuro);
    color: #ffffff;
   
    padding: 140px 20px;
    overflow: hidden;
    text-align: center;
}

/* imagem de fundo com transparÃªncia */
#reservas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("logos/onda_azul.png");
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

/* conteÃºdo acima da imagem */
#reservas .container {
    position: relative;
    z-index: 2;
}

#reservas h2,
#reservas p {
    color: #ffffff;
}

#reservas .btn-reserva {
    border-color: #ffffff;
    color: #ffffff;
}

#reservas .btn-reserva:hover {
    background: #ffffff;
    color: var(--oceano-escuro);
	 border: 3px solid #000000; /* borda preta de 5px */
}


/* ======================
   FOOTER
====================== */
footer {
   
	 background: var(--oceano);
    color: #ffffff;
    text-align: center;
    padding: 35px;
    font-size: 0.85rem;
}

/* ======================
   MOBILE
====================== */



@media (max-width: 767px) {

    .bg-image {
        min-height: 250px;
        width: 100%;
    }

    .text-col {
        padding: 60px 30px;
    }

    .text-col h2 {
        text-align: center;
    }

    #reservas {
        margin-top: 80px;
        padding: 100px 20px;
        min-height: 300px;
    }
}

.imgico {
    width: 60px;
    opacity: 0.5;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

/* MOBILE */
@media (max-width: 767px) {
    .imgico {
        display: block;
        margin: 0 auto 5px auto; /* centraliza e cria quebra de linha */
    }

    h2 {
        text-align: center;
    }
}



/* ======================
   SITE EM CONSTRUÃ‡ÃƒO FIXO
====================== */
.site-construcao {
    position: fixed;
    bottom: 10px;

    left: 0;
    right: 0;
    margin: 0 auto;

    width: fit-content;
    max-width: calc(100vw - 32px);

    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(53, 94, 99, 0.85);
    color: #ffffff;

    padding: 8px 14px;
    border-radius: 20px;

    font-size: 0.75rem;
    letter-spacing: 0.5px;

    white-space: nowrap;
    pointer-events: none;
}

.site-construcao {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-construcao.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}


@media (max-width: 767px) {
    .site-construcao {
        font-size: 0.7rem;
        padding: 7px 12px;
    }
}
 

/* ÃCONE DE CONSTRUÃ‡ÃƒO */
.build-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.build-bars span {
    width: 3px;
    height: 6px;
    background: #ffffff;
    opacity: 0.7;
    animation: build 1.2s infinite ease-in-out;
}

.build-bars span:nth-child(2) {
    animation-delay: 0.2s;
    height: 10px;
}

.build-bars span:nth-child(3) {
    animation-delay: 0.4s;
    height: 14px;
}

@keyframes build {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* TEXTO */
.build-text {
    white-space: nowrap;
}


/* ======================
   SELETOR DE IDIOMA
====================== */
.language-switch {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

/* ITEM */
.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 0.65rem;
    color: var(--creme);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-item img {
    width: 26px;
    height: auto;
    margin-bottom: 3px;
}

/* HOVER SOMENTE NO CLICÃVEL */
.lang-item:hover {
    opacity: 1;
}

/* IDIOMA ATIVO */
.lang-item.active {
    opacity: 0.3;
    pointer-events: none;
}

/* MOBILE */
@media (max-width: 767px) {
    .language-switch {
        bottom: 15px;
        right: 15px;
    }

    .lang-item img {
        width: 22px;
    }
}
@media (max-width: 767px) {
    .site-construcao {
        bottom: 12px;
        right: 12px;

       

        transform: none;
    }
}

@keyframes logoMove {

    /*  nasce no centro */
    0% {
        top: 50%;
        left: 50%;
        width: 200px;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    /*  pausa total */
    20% {
        top: 50%;
        left: 50%;
        width: 200px;
        transform: translate(-50%, -50%) rotate(0deg);
    

	
    }
    /*  cresce devagar */
    55% {
        top: 50%;
        left: 50%;
        width: 300px;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    /*  sobe girando atÃ© o topo */
    100% {
        top: 10px;
        left: 10px;
        width: 46px;
        transform: translate(0, 0) rotate(-360deg);
    }
}


/* ======================
   HEADER / NAVBAR
====================== */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9998;
    background: rgba(244, 241, 234, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);

    opacity: 0;                 /* ðŸ‘ˆ escondida */
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.main-header.visible {
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(10px);
}

.main-header {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.main-header.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8px 24px; /* mais fina */
    display: flex;
    align-items: center;
    justify-content: space-between;
	z-index: 9998;
}

.nav-logo img {
    width: 46px; /* proporcional Ã  barra */
    opacity: 0;
    transition: opacity 0.6s ease;
}



/* LOGO */


.nav-logo:hover img {
    transform: scale(1.05);
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 30px;
}

/* LINKS */
.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--oceano-escuro);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
     text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* ICONE PADRÃƒO (ESCONDIDO) */
.nav-icon {
    width: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* SOMENTE LINK ATIVO MOSTRA O PNG */
.nav-link.active .nav-icon {
    opacity: 1;
    transform: translateX(0);
}


/* HOVER */
.nav-link:hover {
    opacity: 1;
}

/* ACTIVE */
.nav-link.active {
    opacity: 1;
}

.nav-link.active .nav-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ======================
   MOBILE MENU
====================== */

#nav-toggle {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--oceano-escuro);
}

/* MOBILE */
@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--creme);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    #nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

  .nav-container { padding: 10px 18px; } .nav-logo img { width: 42px; } 
	
	.nav-link { font-size: 0.95rem; }

    .nav-icon {
        width: 22px;
    }
}


/* ======================
   FOOTER
====================== */

.main-footer {
    background: linear-gradient(
        to bottom,
        var(--oceano-escuro) 0%,
        #1f3f43 100%
    );
    color: #ffffff;
    padding: 70px 20px 60px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* LOGO FOOTER */
.footer-inner img {
    display: block;
    margin: 0 auto 30px;
}

/* ======================
   FOOTER MENU (LINKS)
====================== */

.footer-menu {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ======================
   SOCIAL FOOTER (ÍCONES)
====================== */

.footer-social {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
	padding-bottom: 50px;
}

.footer-social .social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 20px;

    border: 2px solid transparent;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* HOVER BOTÃO (PADRÃO DO SITE) */
.footer-social .social-icon:hover {
    background: #ffffff;
    color: var(--oceano-escuro);
    border: 3px solid #000000;
    transform: translateY(-3px);
}

/* ======================
   TEXTO FINAL
====================== */

.main-footer p {
    margin-top: 30px;
    font-size: 0.7rem;
    opacity: 0.65;
    line-height: 1.6;
}

/* LINK VDESIGN – MESMO PADRÃO DOS LINKS */
.main-footer p a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.main-footer p a:hover {
    opacity: 1;
}

/* ======================
   MOBILE
====================== */

@media (max-width: 767px) {

    .footer-menu {
        gap: 20px;
    }

    .footer-social {
        margin-top: 22px;
    }

    .footer-inner img {
        width: 140px;
    }
}


.ghost-section {
    height: 1px;
    margin: 0;
    padding: 0;
}



/* ======================
   ICON SCROLL ANIMATION
====================== */
.imgico {
    width: 60px;
    opacity: 0;
    transform: translateY(25px) rotate(-12deg);
    transition: 
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

/* quando a seção entra */
.section.show-icons .imgico {
    opacity: 0.6;
    transform: translateY(0) rotate(0deg);
}


/* ======================
   SECTION ICON SCROLL
====================== */

.section h2 .imgico {
    opacity: 0;
    transform: translateY(22px) rotate(-10deg);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

/* quando a section entra */
.section.icon-visible h2 .imgico {
    opacity: 0.6;
    transform: translateY(0) rotate(0deg);
}




/* ==================================================
   TEXT SCROLL ANIMATION – SLAB KRUI
   (SEM JS NOVO, SÓ CSS)
================================================== */

/* ESTADO INICIAL – TEXTOS ESCONDIDOS */
.section .text-col h2,
.section .text-col p,
.section .text-col .btn-reserva {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

/* QUANDO A SECTION ENTRA NA TELA */
.section.show-icons .text-col h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.section.show-icons .text-col p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* BOTÃO */
.section.show-icons .text-col .btn-reserva {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

/* ==================================================
   MICRO MOVIMENTO EXTRA (FEEL PREMIUM)
================================================== */

.section.show-icons .text-col h2 {
    letter-spacing: 0.5px;
}

.section.show-icons .text-col p {
    line-height: 1.85;
}

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

    .section .text-col h2,
    .section .text-col p,
    .section .text-col .btn-reserva {
        transform: translateY(20px);
        transition-duration: 0.6s;
    }

    .section.show-icons .text-col h2 {
        transition-delay: 0.1s;
    }

    .section.show-icons .text-col p {
        transition-delay: 0.2s;
    }

    .section.show-icons .text-col .btn-reserva {
        transition-delay: 0.3s;
    }
}

/* ==================================================
   DESIGN UPGRADE – SLAB KRUI
   (VISUAL ONLY – JS SAFE)
================================================== */


/* =========================
   1. BACKGROUNDS COM PROFUNDIDADE
========================= */

.section.dark {
    background: linear-gradient(
        180deg,
        var(--areia) 0%,
        #e1dccf 100%
    );
}

.section.light {
    background: linear-gradient(
        180deg,
        var(--creme) 0%,
        #ffffff 100%
    );
}


/* =========================
   2. TÍTULOS MAIS EDITORIAIS
========================= */

.text-col h2 {
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .text-col h2 {
        font-size: 1.9rem;
    }
}


/* =========================
   3. TEXTO MAIS PREMIUM
========================= */

.text-justify {
    font-size: 0.95rem;
    line-height: 1.85;
    opacity: 0.92;
}


/* =========================
   4. MICRO-MOVIMENTO NAS IMAGENS
========================= */

.bg-image {
    transition: transform 1.4s ease;
}

/* .section:hover .bg-image {
    transform: scale(1.04);
} */




/* =========================
   5. NAVBAR MAIS “SURF FILM”
========================= */

.nav-link {
    letter-spacing: 2.5px;
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--oceano-escuro);
    opacity: 0.6;
}


/* =========================
   6. HERO MAIS CINEMÁTICO
========================= */

.video-background iframe {
    filter: contrast(1.05) saturate(1.1);
}

.overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
}


/* =========================
   7. BOTÕES COM MAIS PRESENÇA
========================= */

.btn-reserva {
    letter-spacing: 4px;
    backdrop-filter: blur(6px);
    transition:
        all 0.3s ease,
        transform 0.3s ease;
}

.btn-reserva:hover {
    transform: translateY(-2px);
}


/* =========================
   8. SECTION SPACING (RESPIRA)
========================= */

.text-col {
    padding: 140px 90px;
}

@media (max-width: 900px) {
    .text-col {
        padding: 90px 40px;
    }
}

@media (max-width: 767px) {
    .text-col {
        padding: 70px 30px;
    }
}


/* =========================
   9. FOOTER MAIS SOFISTICADO
========================= */

.main-footer {
    background: linear-gradient(
        to bottom,
        #355e63 0%,
        #1f3f43 100%
    );
}

.main-footer p {
    letter-spacing: 0.6px;
}


/* =========================
   10. UNDER CONSTRUCTION MAIS CLEAN
========================= */

.site-construcao {
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}



/* ==================================================
   BACKGROUND ZOOM INTERNO – VERSÃO FINAL
   (SEM SUMIR, SEM VAZAR, SEM ILUSÃO)
================================================== */

.bg-image {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* camada animada */
.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: inherit;
    background-size: cover;
    background-position: center;

    transform: scale(1);
    transition: transform 1.6s cubic-bezier(.22,.61,.36,1);

    z-index: 1;
}

/* garante que a camada fique visível */
.bg-image {
    z-index: 0;
}

/* zoom ao entrar na section */
.section.show-icons .bg-image::after {
    transform: scale(1.08);
}

/* hover desktop */
@media (hover: hover) {
    .section:hover .bg-image::after {
        transform: scale(1.12);
    }
}

/* =========================================
   THE WAVES – CORINGA DE FUNDO
   (por enquanto igual aos outros)
========================================= */

#waves {
    background: #f4f1ea;
}

/* FUTURO (se quiser ativar depois)
#waves.is-gradient {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f1ea 100%
    );
}
*/


/* =========================================
   TITULOS DAS SECTIONS – LEAGUE SPARTAN
========================================= */

.section h2,
.section .section-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
   
}

/* MOBILE */
@media (max-width: 767px) {
    .section h2,
    .section .section-title {
        font-size: 0.95em;
        letter-spacing: 0.08em;
    }
}



/* =========================================
   ZOOM NAS IMAGENS – MOBILE
========================================= */

@media (max-width: 767px) {
    .section.show-icons .bg-image {
        transform: scale(1.06);
        transition: transform 1.6s cubic-bezier(.22,.61,.36,1);
    }
}
/* =========================================
   ZOOM NAS IMAGENS – MOBILE (COM RESET)
========================================= */
  
@media (max-width: 767px) {

    /* estado inicial */
    .bg-image {
        transform: scale(1);
        transition: transform 1.6s cubic-bezier(.22,.61,.36,1);
    }

    /* quando a section entra em cena */
    .section.show-icons .bg-image {
        transform: scale(1.06);
    }
}
