/*
Theme Name: Wazas Child
Template: kadence
*/

/* ============================================================
   WAZA'S LENÇÓIS TOUR — Custom Landing Page Styles
   Paleta: Navy #0A1F44 | Dourado #C9A84C | Turquesa #00BFCF
   ============================================================ */

/* ─── 1. Oculta header nativo do Kadence na front page ──────── */
.front-page .site-header,
.front-page #masthead,
.front-page .kadence-header,
.front-page header.header-wrap,
.front-page .wp-site-blocks > header {
    display: none !important;
}

.front-page .content-area,
.front-page #content,
.front-page #primary {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Oculta o footer nativo do Kadence na front page */
.front-page .site-footer,
.front-page #colophon,
.front-page footer.footer-wrap,
.front-page .kadence-footer,
.front-page .wp-site-blocks > footer {
    display: none !important;
}

/* ─── 2. Neutraliza estilos globais do Kadence que vazam ──────
   O Kadence adiciona list-style, pseudo-elementos em links e
   padding excessivo em botões. Revertemos aqui com especificidade. */

/* Kill bullets que o Kadence coloca em <li> */
.wz-navbar ul,
.wz-navbar ul li,
.wz-footer ul,
.wz-footer ul li {
    list-style:      none !important;
    list-style-type: none !important;
    margin:          0    !important;
    padding:         0    !important;
}

/* Kill ::before / ::after que o Kadence injeta nos links de menu */
.wz-navbar .wz-nav-links li::before,
.wz-navbar .wz-nav-links li::after,
.wz-navbar .wz-nav-links a::before,
.wz-navbar .wz-nav-links a::after {
    display: none    !important;
    content: none    !important;
}

/* Kill padding/font-size que o Kadence impõe em <a> e botões genéricos */
a.wz-btn,
.wz-navbar a.wz-btn,
.wz-hero   a.wz-btn,
.wz-cta-banner a.wz-btn,
.wz-cta-final  a.wz-btn,
.wz-transfer   a.wz-btn {
    display:        inline-flex  !important;
    align-items:    center       !important;
    padding:        .75rem 1.6rem !important;
    font-size:      .9rem        !important;
    font-weight:    700          !important;
    line-height:    1            !important;
    border-radius:  6px          !important;
    border:         none         !important;
    text-decoration:none         !important;
    box-shadow:     none         !important;
    letter-spacing: normal       !important;
}

/* ─── 3. Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
    --wz-navy:      #0A1F44;
    --wz-navy-mid:  #122d5e;
    --wz-gold:      #C9A84C;
    --wz-gold-dark: #a8882e;
    --wz-turquoise: #00BFCF;
    --wz-white:     #FFFFFF;
    --wz-gray-bg:   #F4F7FB;
    --wz-gray-text: #5A6474;
    --wz-shadow-sm: 0 2px 12px rgba(10,31,68,.08);
    --wz-shadow:    0 4px 24px rgba(10,31,68,.13);
    --wz-shadow-lg: 0 12px 40px rgba(10,31,68,.18);
    --wz-radius:    14px;
    --wz-radius-sm: 8px;
    --wz-ease:      .22s ease;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--wz-navy);
    line-height: 1.65;
    overflow-x: hidden;             /* previne scroll horizontal */
    -webkit-tap-highlight-color: transparent; /* remove flash azul no tap */
    -webkit-text-size-adjust: 100%; /* previne zoom de texto no iOS */
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; }
ul   { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { margin: 0; }
p    { margin: 0; }

/* ─── Container ────────────────────────────────────────────── */
.wz-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ─── Label pill ───────────────────────────────────────────── */
.wz-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--wz-turquoise);
    margin-bottom: .6rem;
}

/* ─── Seções ───────────────────────────────────────────────── */
.wz-section { padding-block: 5.5rem; }

.wz-section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.wz-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--wz-navy);
    margin: .3rem 0 .8rem;
}

.wz-section-sub {
    color: var(--wz-gray-text);
    font-size: 1rem;
}

/* ─── Botões ───────────────────────────────────────────────── */
/* Base (sobrescritos acima com !important para o Kadence) */
.wz-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: filter var(--wz-ease), transform var(--wz-ease), box-shadow var(--wz-ease);
    white-space: nowrap;
    line-height: 1;
}

.wz-btn:hover  { filter: brightness(1.1); transform: translateY(-2px); }
.wz-btn:active { transform: translateY(0); }

.wz-btn-gold {
    background: var(--wz-gold);
    color: var(--wz-navy);
}
.wz-btn-gold:hover { box-shadow: 0 6px 20px rgba(201,168,76,.45); }

.wz-btn-navy {
    background: var(--wz-navy);
    color: var(--wz-white);
}

.wz-btn-outline-white {
    background: transparent;
    color: var(--wz-white) !important;
    border: 2px solid rgba(255,255,255,.5) !important;
}
.wz-btn-outline-white:hover {
    border-color: var(--wz-white) !important;
    background: rgba(255,255,255,.1);
}

.wz-btn-whatsapp {
    background: #25D366;
    color: var(--wz-white) !important;
    padding: .9rem 2rem !important;
    font-size: .95rem !important;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   Layout de 3 zonas: [logo] ← flex:1 [links centrados] → [cta]
   ═══════════════════════════════════════════════════════════ */
.wz-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10,31,68,.08);
    transition: box-shadow var(--wz-ease);
}

.wz-navbar-scrolled {
    box-shadow: 0 2px 24px rgba(10,31,68,.14);
}

.wz-nav-inner {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

/* Logo — zona esquerda */
/* Logo da navbar — emblema circular + nome da marca */
.wz-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none !important;
    transition: opacity var(--wz-ease);
}
.wz-nav-logo:hover { opacity: .88; }

/* Anel dourado fino — menor que o do footer */
.wz-nav-logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--wz-gold), #f0d080, var(--wz-gold));
    box-shadow:
        0 0 0 2px rgba(201,168,76,.15),
        0 2px 10px rgba(201,168,76,.2);
    transition: box-shadow var(--wz-ease);
}
.wz-nav-logo:hover .wz-nav-logo-ring {
    box-shadow:
        0 0 0 2px rgba(201,168,76,.3),
        0 4px 16px rgba(201,168,76,.3);
}

.wz-nav-logo-ring img {
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #ffffff; /* gap claro — navbar é branca */
}

/* Nome da marca ao lado */
.wz-nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 0;
}
.wz-nav-brand strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--wz-navy);
    letter-spacing: -.01em;
}
.wz-nav-brand span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--wz-turquoise);
}

/* Links — zona central (mobile: menu hambúrguer) */
.wz-nav-links {
    display: none; /* mobile: oculto por padrão */
    list-style: none !important;
    margin: 0;
    padding: 0;
    /* Mobile dropdown */
    flex-direction: column;
    position: absolute;
    top: 80px; /* altura real da navbar */
    left: 0; right: 0;
    background: var(--wz-white);
    border-top: 1px solid rgba(10,31,68,.07);
    padding: .75rem 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(10,31,68,.12);
}

.wz-nav-links.wz-nav-open { display: flex; }

.wz-nav-links li {
    list-style: none !important;
    list-style-type: none !important;
}

.wz-nav-links a {
    display: block;
    padding: .65rem .1rem;
    font-size: .95rem;
    font-weight: 500;
    color: var(--wz-navy);
    border-bottom: 1px solid rgba(10,31,68,.05);
    transition: color var(--wz-ease), padding-left var(--wz-ease);
}
.wz-nav-links a:hover { color: var(--wz-turquoise); padding-left: .35rem; }

/* Hamburger */
.wz-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid rgba(10,31,68,.12);
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    transition: border-color var(--wz-ease);
}
.wz-nav-toggle:hover { border-color: var(--wz-gold); }
.wz-nav-toggle span {
    display: block;
    height: 2px;
    background: var(--wz-navy);
    border-radius: 2px;
    transition: var(--wz-ease);
}

/* CTA — mobile: oculto */
.wz-nav-cta { display: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.wz-hero {
    padding-top: calc(80px + 5rem);
    padding-bottom: 5.5rem;
    /* background-image vem inline do PHP; fallback navy caso imagem não carregue */
    background-color: var(--wz-navy);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

/* Overlay escuro para legibilidade do texto sobre a foto */
.wz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(6, 18, 42, .85) 0%,
        rgba(6, 18, 42, .70) 55%,
        rgba(6, 18, 42, .30) 100%
    );
    pointer-events: none;
}

/* Glow turquesa no canto direito */
.wz-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,207,.15) 0%, transparent 70%);
    pointer-events: none;
}

.wz-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
}

.wz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(0,191,207,.12);
    border: 1px solid rgba(0,191,207,.35);
    color: var(--wz-turquoise);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 100px;
    margin-bottom: .75rem;
}
.wz-hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--wz-turquoise);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(1.4); }
}

.wz-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--wz-white);
    letter-spacing: -.01em;
    margin-bottom: 1.25rem;
}

.wz-hero-highlight { color: var(--wz-gold); }

.wz-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.wz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wz-hero-image { display: flex; justify-content: center; }

.wz-hero-img-frame {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: min(340px, 78vw);
    height: min(340px, 78vw);
    border: 5px solid var(--wz-gold);
    box-shadow:
        0 0 0 14px rgba(201,168,76,.15),
        0 24px 60px rgba(0,0,0,.35);
}
.wz-hero-img-frame img { width:100%; height:100%; object-fit:cover; }

/* ═══════════════════════════════════════════════════════════
   VIVA MOMENTOS
   ═══════════════════════════════════════════════════════════ */
.wz-moments { background: var(--wz-white); }

.wz-moments-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.wz-moments-text .wz-section-title { text-align: left; }

.wz-moments-text p {
    color: var(--wz-gray-text);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.wz-moments-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.wz-moments-mosaic img {
    border-radius: var(--wz-radius-sm);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .38s ease, box-shadow .38s ease;
}
.wz-moments-mosaic img:hover {
    transform: scale(1.04);
    box-shadow: var(--wz-shadow-lg);
    z-index: 1;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════
   TRANSFER
   ═══════════════════════════════════════════════════════════ */
.wz-transfer { background: var(--wz-gray-bg); }

.wz-transfer-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.wz-transfer-card {
    background: var(--wz-white);
    border-radius: var(--wz-radius);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--wz-shadow);
    border-top: 4px solid var(--wz-gold);
}

.wz-transfer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.wz-transfer-card h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--wz-navy);
    margin-bottom: .2rem;
}

.wz-transfer-subtitle {
    color: var(--wz-turquoise);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 1.75rem !important;
    display: block;
}

.wz-transfer-routes {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 2rem;
}

.wz-route-item {
    background: var(--wz-gray-bg);
    border-left: 4px solid var(--wz-gold);
    border-radius: 0 var(--wz-radius-sm) var(--wz-radius-sm) 0;
    padding: .9rem 1.1rem;
    transition: background var(--wz-ease);
}
.wz-route-item:hover { background: #edf1f8; }

.wz-route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    margin-bottom: .3rem;
}

.wz-route-name { font-weight: 700; color: var(--wz-navy); font-size: .95rem; }

.wz-route-price {
    background: var(--wz-navy);
    color: var(--wz-gold);
    font-weight: 800;
    font-size: .85rem;
    padding: .22rem .8rem;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: .02em;
}

.wz-route-detail { font-size: .8rem; color: var(--wz-gray-text); }

/* Slideshow automático — CSS puro, sem JS */
.wz-slideshow {
    position: relative;
    border-radius: var(--wz-radius);
    overflow: hidden;
    box-shadow: var(--wz-shadow);
    aspect-ratio: 4/3;
    background: var(--wz-navy);
}

.wz-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: wz-fade 20s infinite;
}

/* Cada slide entra com delay escalonado (20s ÷ 4 = 5s por slide) */
.wz-slide-1 { animation-delay:  0s; }
.wz-slide-2 { animation-delay:  5s; }
.wz-slide-3 { animation-delay: 10s; }
.wz-slide-4 { animation-delay: 15s; }

@keyframes wz-fade {
    /*  0% — invisível
        5% — fade in (1s)
       20% — visível (4s de exibição)
       25% — fade out (1s)
      100% — invisível até próximo ciclo */
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    20%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PASSEIOS — GRID DE CARDS
   ═══════════════════════════════════════════════════════════ */
.wz-tours { background: var(--wz-white); }

.wz-tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.wz-tour-card {
    border-radius: var(--wz-radius);
    overflow: hidden;
    background: var(--wz-white);
    box-shadow: var(--wz-shadow-sm);
    border: 1px solid rgba(10,31,68,.07);
    display: flex;
    flex-direction: column;
    transition: transform var(--wz-ease), box-shadow var(--wz-ease), border-color var(--wz-ease);
}
.wz-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wz-shadow-lg);
    border-color: rgba(201,168,76,.3);
}

.wz-tour-img { overflow: hidden; }
.wz-tour-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .45s ease;
}
.wz-tour-card:hover .wz-tour-img img { transform: scale(1.05); }

.wz-tour-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.5rem 1.75rem;
}

.wz-tour-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--wz-navy);
    margin-bottom: .55rem;
}

.wz-tour-body p {
    color: var(--wz-gray-text);
    font-size: .88rem;
    flex: 1;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.wz-tour-time {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--wz-turquoise);
    background: rgba(0,191,207,.08);
    border: 1px solid rgba(0,191,207,.2);
    padding: .25rem .7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    width: fit-content;
}

/* Botão "Ver Passeio" — pill com transição por cor, sem gap animado */
.wz-tour-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1.1rem;
    background: var(--wz-navy);
    color: var(--wz-white) !important;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 700;
    border: 2px solid transparent !important;
    cursor: pointer;
    font-family: inherit;
    margin-top: auto;
    width: fit-content;
    transition: background var(--wz-ease), color var(--wz-ease), border-color var(--wz-ease), transform var(--wz-ease);
    text-decoration: none !important;
}
.wz-tour-link:hover {
    background: var(--wz-gold) !important;
    color: var(--wz-navy) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    filter: none;
}

/* ═══════════════════════════════════════════════════════════
   MODAL DOS PASSEIOS — sem scroll, layout 2 colunas
   ═══════════════════════════════════════════════════════════ */
.wz-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.wz-modal.wz-modal-open { display: flex; }

.wz-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 30, .85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Caixa principal — altura fixa, sem scroll */
.wz-modal-box {
    position: relative;
    z-index: 1;
    background: var(--wz-white);
    border-radius: var(--wz-radius);
    width: 100%;
    max-width: 900px;
    height: min(88vh, 560px);   /* altura fixa — tudo cabe sem rolar */
    overflow: hidden;            /* nada vaza para fora */
    box-shadow: 0 32px 80px rgba(0,0,0,.45);
    display: grid;
    grid-template-columns: 1fr; /* mobile: 1 coluna */
    animation: wzModalIn .28s ease;
}

/* Desktop: 2 colunas — galeria | info */
@media (min-width: 640px) {
    .wz-modal-box {
        grid-template-columns: 55% 45%;
    }
}

@keyframes wzModalIn {
    from { opacity: 0; transform: scale(.96) translateY(14px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* ── Botão fechar ── */
.wz-modal-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wz-navy);
    transition: background var(--wz-ease), transform var(--wz-ease);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.wz-modal-close:hover { background: var(--wz-white); transform: scale(1.1); }

/* ── Coluna esquerda: galeria ── */
.wz-modal-gallery {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    background: var(--wz-navy);
}

/* Imagem principal — ocupa todo o espaço disponível */
.wz-modal-main-img {
    flex: 1;
    overflow: hidden;
    min-height: 0; /* essencial para flex fill sem transbordar */
}
.wz-modal-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease;
    display: block;
}

/* Tira de thumbnails — altura fixa na base */
.wz-modal-thumbs {
    display: flex;
    gap: .4rem;
    padding: .6rem .75rem;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(6,14,32,.9);
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--wz-gold) transparent;
    height: 64px;
    align-items: center;
}

.wz-thumb {
    flex-shrink: 0;
    width: 68px;
    height: 46px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: rgba(255,255,255,.1);
    transition: border-color var(--wz-ease), transform var(--wz-ease), opacity var(--wz-ease);
    opacity: .65;
}
.wz-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wz-thumb:hover            { border-color: rgba(201,168,76,.6); opacity: .9; transform: scale(1.06); }
.wz-thumb.wz-thumb-active  { border-color: var(--wz-gold); opacity: 1; }

/* ── Coluna direita: informações ── */
.wz-modal-info {
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem 1.75rem;
    gap: .85rem;
    height: 100%;
    overflow: hidden;    /* a caixa não rola */
    border-left: 1px solid rgba(10,31,68,.08);
}

.wz-modal-info h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--wz-navy);
    line-height: 1.2;
    flex-shrink: 0;
}

.wz-modal-info .wz-tour-time {
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Descrição — único elemento que pode rolar internamente se o texto for longo */
.wz-modal-desc {
    flex: 1;
    overflow-y: auto;
    color: var(--wz-gray-text);
    line-height: 1.75;
    font-size: .92rem;
    min-height: 0;
    padding-right: .25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(10,31,68,.15) transparent;
}

.wz-modal-info .wz-btn-whatsapp {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA WHATSAPP BANNER
   ═══════════════════════════════════════════════════════════ */
.wz-cta-banner {
    background: linear-gradient(135deg, var(--wz-navy) 0%, #0d2657 100%);
    padding-block: 4.5rem;
    position: relative;
    overflow: hidden;
}
.wz-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.wz-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.wz-cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--wz-white);
    margin-bottom: .5rem;
}
.wz-cta-text p {
    color: rgba(255,255,255,.7);
    max-width: 540px;
}

.wz-whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   POR QUE VIAJAR COM A WAZA'S?
   ═══════════════════════════════════════════════════════════ */
.wz-why { background: var(--wz-gray-bg); }

.wz-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.wz-why-card {
    background: var(--wz-white);
    border-radius: var(--wz-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--wz-shadow-sm);
    border: 1px solid rgba(10,31,68,.06);
    text-align: center;
    transition: transform var(--wz-ease), box-shadow var(--wz-ease);
}
.wz-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wz-shadow);
}

.wz-why-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wz-navy) 0%, #1a4a8a 100%);
    margin-bottom: 1.4rem;
    box-shadow: 0 6px 20px rgba(10,31,68,.22);
}
.wz-why-icon-wrap svg { width: 28px; height: 28px; fill: var(--wz-white); }

.wz-why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--wz-navy);
    margin-bottom: .6rem;
}
.wz-why-card p { color: var(--wz-gray-text); font-size: .9rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   COMO FUNCIONA?
   ═══════════════════════════════════════════════════════════ */
.wz-how { background: var(--wz-white); }

.wz-how-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.wz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    padding: 2rem 1.25rem;
}

.wz-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--wz-navy);
    color: var(--wz-gold);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(10,31,68,.28);
    border: 3px solid rgba(201,168,76,.3);
}

.wz-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--wz-navy);
    margin-bottom: .5rem;
}
.wz-step p { color: var(--wz-gray-text); font-size: .88rem; line-height: 1.65; }

.wz-step-connector {
    width: 2px;
    height: 44px;
    background: linear-gradient(to bottom, var(--wz-turquoise), var(--wz-gold));
    border-radius: 2px;
    opacity: .6;
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.wz-cta-final {
    background: linear-gradient(135deg, var(--wz-navy) 0%, #0e2e65 100%);
    padding-block: 5.5rem;
    position: relative;
    overflow: hidden;
}
.wz-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.wz-cta-final .wz-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}
.wz-cta-final .wz-cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--wz-white);
    margin-bottom: .5rem;
}
.wz-cta-final .wz-cta-text p { color: rgba(255,255,255,.7); max-width: 520px; }

/* FAB WhatsApp e Lead Modal movidos para o plugin wlc-whatsapp-lead */

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.wz-footer {
    background: #060e20;
    color: rgba(255,255,255,.6);
    padding-top: 4.5rem;
}

.wz-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Wrapper circular do logo no footer */
.wz-footer-logo-wrap {
    display: inline-block;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--wz-gold), #f0d080, var(--wz-gold));
    box-shadow:
        0 0 0 3px rgba(201,168,76,.18),
        0 0 24px rgba(201,168,76,.25),
        0 8px 24px rgba(0,0,0,.4);
    transition: box-shadow var(--wz-ease), transform var(--wz-ease);
    margin-bottom: 1.1rem;
}
.wz-footer-logo-wrap:hover {
    box-shadow:
        0 0 0 3px rgba(201,168,76,.3),
        0 0 36px rgba(201,168,76,.4),
        0 12px 32px rgba(0,0,0,.45);
    transform: translateY(-2px);
}

.wz-footer-logo {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #060e20; /* gap escuro entre imagem e anel dourado */
}

/* Nome da marca abaixo do logo */
.wz-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    margin-bottom: .75rem;
}
.wz-footer-brand-text strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--wz-white);
    letter-spacing: .01em;
}
.wz-footer-brand-text span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--wz-gold);
}

.wz-footer-brand p {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    max-width: 220px;
    line-height: 1.6;
}

.wz-footer-links h4,
.wz-footer-social h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wz-gold);
    margin-bottom: 1rem;
}

.wz-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    list-style: none !important;
}

.wz-footer-links a {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    transition: color var(--wz-ease), padding-left var(--wz-ease);
}
.wz-footer-links a:hover { color: var(--wz-gold); padding-left: .3rem; }

.wz-footer-social { display: flex; flex-direction: column; gap: .6rem; }

.wz-social-link {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    transition: color var(--wz-ease);
}
.wz-social-link:hover { color: var(--wz-turquoise); }
.wz-social-whatsapp:hover { color: #25D366 !important; }

.wz-footer-bottom { padding-block: 1.25rem; }
.wz-footer-bottom p {
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≥ 640px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {

    /* ── Navbar desktop: 3 zonas ── */
    .wz-nav-toggle { display: none; }

    .wz-nav-links {
        display: flex !important;
        flex-direction: row;
        flex: 1;                     /* cresce para ocupar espaço central */
        justify-content: center;     /* links ficam centralizados */
        align-items: center;
        position: static;
        background: none;
        border: none;
        padding: 0;
        gap: .15rem;
        box-shadow: none;
        list-style: none !important;
    }

    .wz-nav-links li {
        list-style: none !important;
    }

    .wz-nav-links a {
        border: none;
        padding: .45rem .75rem;
        border-radius: 6px;
        font-size: .88rem;
        font-weight: 500;
    }
    .wz-nav-links a:hover {
        background: rgba(10,31,68,.05);
        padding-left: .75rem;       /* volta ao valor fixo no hover */
    }

    /* CTA aparece à direita (flex-shrink: 0 garante que não encolhe) */
    .wz-nav-cta {
        display: inline-flex;
        flex-shrink: 0;
        padding: .6rem 1.25rem !important;
        font-size: .85rem !important;
    }

    /* Tours */
    .wz-tours-grid { grid-template-columns: 1fr 1fr; }

    /* Why */
    .wz-why-grid { grid-template-columns: repeat(3, 1fr); }

    /* Steps horizontais */
    .wz-how-steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    .wz-step-connector {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, var(--wz-turquoise), var(--wz-gold));
        margin-top: 32px;
        flex-shrink: 0;
    }

    /* CTA banner side-by-side */
    .wz-cta-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }
    .wz-cta-text { flex: 1; }
    .wz-cta-final .wz-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Footer */
    .wz-footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Desktop (≥ 960px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 960px) {

    /* Hero two-column */
    .wz-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
    .wz-hero-content { flex: 1; max-width: 580px; }
    .wz-hero-image   { flex: 1; justify-content: flex-end; }
    .wz-hero-img-frame { width: 440px; height: 440px; }

    /* Moments two-column */
    .wz-moments-inner {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }
    .wz-moments-text   { flex: 1; max-width: 460px; }
    .wz-moments-mosaic { flex: 1; }

    /* Transfer two-column */
    .wz-transfer-inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    .wz-transfer-card  { flex: 1; max-width: 480px; }
    .wz-transfer-photo { flex: 1; }

    /* Tours 3 colunas */
    .wz-tours-grid { grid-template-columns: repeat(3, 1fr); }

    /* Footer 3 colunas */
    .wz-footer-inner { grid-template-columns: 2fr 1fr 1fr; }

    /* Steps */
    .wz-step { max-width: 260px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Wide (≥ 1200px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .wz-hero-img-frame { width: 500px; height: 500px; }
    .wz-step-connector { width: 120px; }
    .wz-nav-links a { font-size: .92rem; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST REFINEMENTS (< 640px)
   Corrige todos os problemas específicos de telas pequenas
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 639px) {

    /* ── Container: padding menor nas bordas ── */
    .wz-container { padding-inline: 1.1rem; }

    /* ── Seções: espaçamento vertical reduzido ── */
    .wz-section          { padding-block: 3rem; }
    .wz-section-header   { margin-bottom: 2.25rem; }
    .wz-cta-banner       { padding-block: 3rem; }
    .wz-cta-final        { padding-block: 3.5rem; }

    /* ── Hero mobile: foto full-bleed + glass card flutuante ── */
    .wz-hero {
        min-height: 100svh;
        min-height: 100vh; /* fallback */
        padding-top: 80px; /* só a altura da navbar — photo respira */
        padding-bottom: 1.75rem;
        /* Mostra o céu + dunas na parte superior */
        background-position: center 20%;
        display: flex;
        align-items: flex-end;
    }

    /* Overlay sutil: vinheta leve no topo e base, foto domina o centro */
    .wz-hero::before {
        background:
            linear-gradient(to bottom, rgba(6,18,42,.55) 0%, transparent 30%),
            linear-gradient(to top,    rgba(6,18,42,.35) 0%, transparent 40%);
    }

    .wz-hero-inner {
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    /* Glass card — flutua sobre a foto, deixa a paisagem respirar acima */
    .wz-hero-content {
        width: 100%;
        background: rgba(6, 18, 42, .78);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, .10);
        padding: 1.75rem 1.5rem 1.5rem;
        box-shadow: 0 -4px 40px rgba(6,18,42,.35), inset 0 1px 0 rgba(255,255,255,.07);
    }

    /* Círculo: não existe no mobile — a foto de fundo já representa */
    .wz-hero-image { display: none; }

    .wz-hero-badge { font-size: .66rem; margin-bottom: .6rem; }

    .wz-hero-title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        margin-bottom: .75rem;
        line-height: 1.15;
    }

    .wz-hero-sub {
        font-size: .9rem;
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,.78);
    }

    .wz-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: .65rem;
        width: 100%;
    }
    .wz-hero-actions .wz-btn {
        width: 100%;
        justify-content: center;
        padding: .95rem 1.5rem !important;
        font-size: .95rem !important;
    }

    /* ── Moments ───────────────────────────────────────────── */
    .wz-moments-mosaic { gap: .5rem; }
    .wz-moments-text p { max-width: 100%; }

    /* ── Transfer ──────────────────────────────────────────── */
    .wz-transfer-card { padding: 1.75rem 1.25rem; }

    /* ── Tour cards: 1 coluna, sem hover lift (touch) ── */
    .wz-tours-grid { gap: 1.25rem; }

    /* ── MODAL DOS PASSEIOS — bottom sheet ─────────────────── */
    /* Alinha na base da tela como drawer nativo */
    .wz-modal {
        padding: 0;
        align-items: flex-end;
    }
    .wz-modal-box {
        border-radius: 16px 16px 0 0;
        height: 90vh;
        max-height: 90vh;
        /* Troca grid por flex column para controle preciso */
        display: flex;
        flex-direction: column;
        overflow: hidden;
        animation: wzModalInMobile .3s cubic-bezier(.32,.72,0,1) both;
    }
    @keyframes wzModalInMobile {
        from { transform: translateY(100%); opacity: .8; }
        to   { transform: translateY(0);    opacity: 1; }
    }
    /* Galeria: altura fixa no topo */
    .wz-modal-gallery {
        height: 230px;
        min-height: 230px;
        flex-shrink: 0;
    }
    .wz-modal-thumbs { height: 52px; }
    .wz-thumb { width: 58px; height: 38px; }
    /* Info: ocupa o restante, rola internamente */
    .wz-modal-info {
        flex: 1;
        min-height: 0;
        height: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-left: none;
        border-top: 1px solid rgba(10,31,68,.08);
        padding: 1.25rem 1.1rem 2rem;
        gap: .65rem;
    }
    .wz-modal-info h2 { font-size: 1.15rem; }
    /* Descrição: deixa rolar junto com a info, não isolada */
    .wz-modal-desc {
        overflow: visible;
        flex: none;
        max-height: none;
        font-size: .88rem;
    }
    /* Botão WA: não precisa de margin-top auto (layout flex nativo) */
    .wz-modal-info .wz-btn-whatsapp {
        margin-top: .5rem;
        padding: .75rem 1.25rem !important;
        font-size: .88rem !important;
        width: 100%;
        justify-content: center;
    }
    /* Arraste indicator (visual cue) */
    .wz-modal-box::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(10,31,68,.15);
        border-radius: 2px;
        margin: .75rem auto -.25rem;
        flex-shrink: 0;
    }

    /* ── CTA banner ────────────────────────────────────────── */
    .wz-cta-text h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

    /* ── Por que Wazas ─────────────────────────────────────── */
    .wz-why-card { padding: 1.75rem 1.25rem; }
    .wz-why-icon-wrap { width: 56px; height: 56px; }
    .wz-why-icon-wrap svg { width: 22px; height: 22px; }

    /* ── Como funciona ─────────────────────────────────────── */
    .wz-step { padding: 1.5rem 1rem; max-width: 100%; }

    /* ── FAB WhatsApp — ícone apenas em telas pequenas ── */
    .wz-fab-label { display: none; }
    .wz-fab-whatsapp {
        padding: 1rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    /* ── Lead Capture Modal — bottom sheet ─────────────────── */
    .wz-lead-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .wz-lead-box {
        border-radius: 20px 20px 0 0;
        padding: 1.75rem 1.25rem 2.5rem;
        max-width: 100%;
        width: 100%;
        /* pull indicator */
        padding-top: 2rem;
    }
    .wz-lead-box::before {
        content: '';
        display: block;
        position: absolute;
        top: .65rem;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 4px;
        background: rgba(10,31,68,.12);
        border-radius: 2px;
    }
    .wz-lead-title  { font-size: 1.25rem; }
    .wz-lead-sub    { font-size: .85rem; margin-bottom: 1.25rem; }
    .wz-lead-icon-wrap { width: 52px; height: 52px; }
    .wz-lead-icon-wrap svg { width: 26px; height: 26px; }

    /* ── Footer ────────────────────────────────────────────── */
    .wz-footer { padding-top: 3rem; }
    .wz-footer-inner { gap: 2rem; }
    .wz-footer-logo { width: 80px; height: 80px; }

    /* ── Tour card "Ver Passeio" — área de toque mínima ── */
    .wz-tour-link {
        padding: .65rem 1.2rem;
        font-size: .85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* ── Botões genéricos: área mínima de toque (44px) ── */
    .wz-btn { min-height: 44px; }
}
