/* Hero Praia V2 — Full-Bleed + Tech UI + Interactive Gallery */

/* ==========================================
   1. SEÇÃO PRINCIPAL
   ========================================== */
.praia-v2-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #050b14;
    padding: 0;
}

/* Force dark text override */
.praia-v2-section,
.praia-v2-section h1, .praia-v2-section h2,
.praia-v2-section p, .praia-v2-section span,
.praia-v2-section div, .praia-v2-section strong {
    color: #ffffff !important;
}

/* ==========================================
   2. BACKGROUND FULL-BLEED
   ========================================== */
.praia-v2-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.praia-v2-bg.active {
    opacity: 1;
}

/* GRADIENT OVERLAY: Dark left → transparent right */
.praia-v2-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 11, 20, 0.92) 0%,
        rgba(5, 11, 20, 0.85) 30%,
        rgba(5, 11, 20, 0.5) 60%,
        rgba(5, 11, 20, 0.2) 100%
    );
    z-index: 1;
}

/* ==========================================
   3. CONTEÚDO
   ========================================== */
.praia-v2-content {
    position: relative;
    z-index: 2;
}

/* Eyebrow */
.praia-v2-eyebrow {
    color: #00ffea !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.4);
}

/* Title */
.praia-v2-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.praia-v2-title span {
    color: transparent !important;
    -webkit-text-stroke: 1.5px #fff;
    display: block;
    transition: all 0.3s ease;
}

/* ==========================================
   4. SELETORES (Estilo tech-btn do Gamer)
   ========================================== */
.praia-v2-selector-wrapper {
    margin-bottom: 15px;
    max-width: 480px;
}

.praia-v2-selectors {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.praia-v2-tech-btn {
    flex: 1;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #8faab9 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    letter-spacing: 0.5px;
}

.praia-v2-tech-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.praia-v2-tech-btn.active {
    background: rgba(255, 77, 29, 0.15);
    border-color: #ff4d1d;
    color: #fff !important;
    text-shadow: 0 0 8px rgba(255, 77, 29, 0.8);
}

/* Barra de energia */
.praia-v2-bar-container {
    width: 100%;
    height: 4px;
    background: #1a2634;
    border-radius: 2px;
    overflow: hidden;
}

.praia-v2-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4d1d, #ff8e1d);
    width: 20%;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px #ff4d1d;
}

/* ==========================================
   5. DESCRIPTION
   ========================================== */
.praia-v2-description {
    color: #b0c2d2 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 90%;
}

/* ==========================================
   6. PRICING BOARD (Header + Access Info)
   ========================================== */
.praia-v2-pricing-board {
    margin-bottom: 15px;
    max-width: 520px;
}

.praia-v2-pricing-header {
    margin-bottom: 12px;
}

.praia-v2-access-label {
    display: inline-block;
    background: rgba(0, 255, 234, 0.08);
    border: 1px solid rgba(0, 255, 234, 0.25);
    color: #00ffea !important;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.praia-v2-pricing-header strong {
    display: block;
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Tier note */
.tier-note {
    color: #8faab9 !important;
    font-size: 0.65rem;
    margin-top: 6px;
    line-height: 1.4;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================
   6b. MICRO-POINTS (Chips de info)
   ========================================== */
.praia-v2-micro-points {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.praia-v2-micro-point {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #8faab9 !important;
    transition: all 0.2s ease;
}

.praia-v2-micro-point i {
    color: #00ffea !important;
    font-size: 0.85rem;
}

.praia-v2-micro-point:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 234, 0.2);
}

/* ==========================================
   7. PRICING HUD
   ========================================== */
.praia-v2-pricing-hud {
    display: flex;
    gap: 10px;
    max-width: 520px;
}

.praia-v2-price-tier {
    flex: 1;
    background: rgba(5, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 12px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

.praia-v2-price-tier:hover {
    transform: translateY(-2px);
    background: rgba(5, 11, 20, 0.95);
}

.tier-orange {
    border-color: rgba(255, 77, 29, 0.3);
}

.tier-orange:hover {
    border-color: #ff4d1d;
    box-shadow: 0 0 15px rgba(255, 77, 29, 0.2);
}

.tier-cyan {
    border-color: rgba(0, 255, 234, 0.3);
}

.tier-cyan:hover {
    border-color: #00ffea;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 5px;
}

.tier-badge {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 2px;
}

.tier-orange .tier-badge {
    background: rgba(255, 77, 29, 0.15);
    color: #ff4d1d !important;
    border: 1px solid rgba(255, 77, 29, 0.3);
}

.tier-cyan .tier-badge {
    background: rgba(0, 255, 234, 0.1);
    color: #00ffea !important;
    border: 1px solid rgba(0, 255, 234, 0.3);
}

.tier-free {
    font-size: 0.55rem;
    font-weight: 800;
    color: #00ffea !important;
    text-transform: uppercase;
    animation: pulse-free 2s infinite;
}

@keyframes pulse-free {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tier-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-label {
    font-size: 0.6rem;
    color: #8faab9 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-info strong {
    font-size: 0.9rem;
    color: #fff !important;
    font-weight: 800;
}

.tier-info strong small {
    font-size: 0.55rem;
    color: #8faab9 !important;
    font-weight: 500;
}

.text-free {
    color: #00ffea !important;
}

.tier-divider {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
}

/* ==========================================
   8. CTA BUTTONS
   ========================================== */
.praia-v2-cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* btn-shine-cta é reutilizado do Gamer (já existe globalmente) */
/* Fallback caso não exista: */
.praia-v2-section .btn-shine-cta {
    position: relative;
    padding: 14px 30px;
    background: #ff4d1d;
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 77, 29, 0.25);
    overflow: hidden;
}

.praia-v2-section .btn-shine-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 77, 29, 0.4);
    color: #fff !important;
}

.praia-v2-section .btn-shine-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: praia-shine 4s infinite;
}

@keyframes praia-shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.praia-v2-btn-secondary {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #8faab9 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.praia-v2-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-color: #00ffea;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
}

/* ==========================================
   9. GALERIA INTERATIVA
   ========================================== */
.praia-v2-gallery-label {
    color: #00ffea !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
    text-align: center;
}

.praia-v2-gallery {
    display: flex;
    gap: 12px;
    justify-content: center;
    perspective: 1000px;
    flex-wrap: wrap;
    max-width: 520px;
}

.praia-v2-card {
    width: 150px;
    height: 200px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}


.praia-v2-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 35, 45, 0.95), rgba(15, 20, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.praia-v2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.7);
}

.praia-v2-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.praia-v2-card.active .praia-v2-card-inner {
    border-color: #00ffea;
    box-shadow: 0 0 25px rgba(0, 255, 234, 0.3), 0 15px 40px rgba(0, 0, 0, 0.6);
}

.praia-v2-card.active img {
    filter: brightness(1);
}

.praia-v2-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.praia-v2-card.active {
    transform: translateY(-8px) scale(1.03);
}

/* Card Label */
.praia-v2-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 10px;
    background: linear-gradient(transparent, rgba(5, 11, 20, 0.9));
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.praia-v2-card-label i {
    color: #00ffea !important;
    font-size: 0.8rem;
}

/* Card Expand Icon */
.praia-v2-card-expand {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.praia-v2-card-expand i {
    color: #fff !important;
    font-size: 0.7rem;
}

.praia-v2-card:hover .praia-v2-card-expand {
    opacity: 1;
    transform: scale(1);
}

.praia-v2-gallery-hint {
    color: #4a5b6d !important;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    text-align: center;
}

/* ==========================================
   10. LIGHTBOX
   ========================================== */
.praia-v2-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.praia-v2-lightbox.open {
    display: flex;
    opacity: 1;
}

.praia-v2-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* CLOSE BUTTON — Top right, always visible */
.praia-v2-lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255, 77, 29, 0.9);
    border: 2px solid #ff4d1d;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 77, 29, 0.4);
}

.praia-v2-lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 77, 29, 0.7);
    background: #ff4d1d;
}

/* ARROW BUTTONS — Sides */
.praia-v2-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px; height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.praia-v2-lb-arrow:hover {
    background: rgba(0, 255, 234, 0.15);
    border-color: #00ffea;
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.praia-v2-lb-arrow-prev { left: 20px; }
.praia-v2-lb-arrow-next { right: 20px; }

/* CONTENT */
.praia-v2-lightbox-content {
    position: relative;
    max-width: 80vw;
    max-height: 85vh;
    z-index: 2;
    animation: lb-zoom-in 0.4s ease;
}

@keyframes lb-zoom-in {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.praia-v2-lightbox-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 234, 0.3);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

/* CAPTION BAR */
.praia-v2-lightbox-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin-top: 10px;
    background: rgba(5, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.praia-v2-lightbox-caption h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.praia-v2-lightbox-counter {
    color: #8faab9 !important;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   11. ANIMAÇÕES DE ENTRADA (CARROSSEL)
   ========================================== */
.praia-v2-section .praia-v2-eyebrow,
.praia-v2-section .praia-v2-title,
.praia-v2-section .praia-v2-selector-wrapper,
.praia-v2-section .praia-v2-description,
.praia-v2-section .praia-v2-pricing-board,
.praia-v2-section .praia-v2-cta-group,
.praia-v2-section .praia-v2-micro-points {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.praia-v2-section .praia-v2-gallery-label,
.praia-v2-section .praia-v2-gallery,
.praia-v2-section .praia-v2-gallery-hint {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animate Active */
.praia-v2-section.animate-active .praia-v2-eyebrow,
.praia-v2-section.animate-active .praia-v2-title,
.praia-v2-section.animate-active .praia-v2-selector-wrapper,
.praia-v2-section.animate-active .praia-v2-description,
.praia-v2-section.animate-active .praia-v2-pricing-board,
.praia-v2-section.animate-active .praia-v2-cta-group,
.praia-v2-section.animate-active .praia-v2-micro-points,
.praia-v2-section.animate-active .praia-v2-gallery-label,
.praia-v2-section.animate-active .praia-v2-gallery,
.praia-v2-section.animate-active .praia-v2-gallery-hint {
    opacity: 1;
    transform: translateX(0);
}

/* Delays cascata */
.praia-v2-section.animate-active .praia-v2-eyebrow { transition-delay: 0.05s; }
.praia-v2-section.animate-active .praia-v2-title { transition-delay: 0.1s; }
.praia-v2-section.animate-active .praia-v2-selector-wrapper { transition-delay: 0.15s; }
.praia-v2-section.animate-active .praia-v2-description { transition-delay: 0.2s; }
.praia-v2-section.animate-active .praia-v2-pricing-board { transition-delay: 0.25s; }
.praia-v2-section.animate-active .praia-v2-cta-group { transition-delay: 0.3s; }
.praia-v2-section.animate-active .praia-v2-micro-points { transition-delay: 0.35s; }
.praia-v2-section.animate-active .praia-v2-gallery-label { transition-delay: 0.15s; }
.praia-v2-section.animate-active .praia-v2-gallery { transition-delay: 0.25s; }
.praia-v2-section.animate-active .praia-v2-gallery-hint { transition-delay: 0.35s; }

/* FALLBACK: Swiper .swiper-slide-active — garante visibilidade quando animate-active não é aplicada */
.swiper-slide-active .praia-v2-section .praia-v2-eyebrow,
.swiper-slide-active .praia-v2-section .praia-v2-title,
.swiper-slide-active .praia-v2-section .praia-v2-selector-wrapper,
.swiper-slide-active .praia-v2-section .praia-v2-description,
.swiper-slide-active .praia-v2-section .praia-v2-pricing-board,
.swiper-slide-active .praia-v2-section .praia-v2-cta-group,
.swiper-slide-active .praia-v2-section .praia-v2-micro-points,
.swiper-slide-active .praia-v2-section .praia-v2-gallery-label,
.swiper-slide-active .praia-v2-section .praia-v2-gallery,
.swiper-slide-active .praia-v2-section .praia-v2-gallery-hint {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   12. RESPONSIVO
   ========================================== */
@media (max-width: 991px) {
    .praia-v2-section {
        height: 100%;
        min-height: 100%;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        align-items: flex-start;
        padding: 20px 0 70px;
        text-align: center;
    }

    /* Mobile: Gradient de cima pra baixo */
    .praia-v2-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 11, 20, 0.90) 0%,
            rgba(5, 11, 20, 0.78) 40%,
            rgba(5, 11, 20, 0.65) 70%,
            rgba(5, 11, 20, 0.50) 100%
        );
    }

    /* Eyebrow mais compacto */
    .praia-v2-eyebrow {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-bottom: 4px;
    }

    /* Título compacto */
    .praia-v2-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .praia-v2-title span {
        font-size: 1.4rem;
    }

    /* Seletores commpactos */
    .praia-v2-selector-wrapper {
        margin: 0 auto 8px auto;
        max-width: 100%;
    }

    .praia-v2-selectors {
        justify-content: center;
    }

    .praia-v2-tech-btn {
        flex: 0 1 auto;
        min-width: 60px;
        padding: 6px 5px;
        font-size: 0.6rem;
    }

    /* Descrição */
    .praia-v2-description {
        font-size: 0.8rem;
        max-width: 100%;
        margin-bottom: 8px;
        text-align: left;
        line-height: 1.4;
    }

    /* Pricing board */
    .praia-v2-pricing-board {
        max-width: 100%;
        text-align: left;
    }

    .praia-v2-pricing-header {
        text-align: left;
        margin-bottom: 8px;
    }

    .praia-v2-pricing-header strong {
        font-size: 1.1rem;
    }

    .praia-v2-access-label {
        font-size: 0.55rem;
        padding: 3px 8px;
        margin-bottom: 4px;
    }

    /* Pricing — stack vertical */
    .praia-v2-pricing-hud {
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto 10px auto;
        gap: 8px;
    }

    .praia-v2-price-tier {
        clip-path: none;
        border-radius: 8px;
        padding: 10px 14px;
    }

    .tier-header {
        margin-bottom: 6px;
    }

    .tier-badge {
        font-size: 0.6rem !important;
    }

    .tier-body {
        gap: 10px;
    }

    .tier-label {
        font-size: 0.65rem !important;
    }

    .tier-info strong {
        font-size: 0.85rem !important;
    }

    .tier-note {
        font-size: 0.6rem !important;
    }

    /* Micro-points → empilhados verticalmente no mobile */
    .praia-v2-micro-points {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
    }

    .praia-v2-micro-point {
        font-size: 0.7rem;
        width: fit-content;
    }

    /* CTA — full width, empilhados */
    .praia-v2-cta-group {
        justify-content: center;
        margin-bottom: 12px;
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }

    .praia-v2-section .btn-shine-cta {
        padding: 14px 22px;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    /* Botão secundário mais visível */
    .praia-v2-btn-secondary {
        text-align: center;
        width: 100%;
        padding: 10px 20px !important;
        border: 1px solid rgba(0, 255, 234, 0.3) !important;
        color: #00ffea !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        border-radius: 6px;
        background: rgba(0, 255, 234, 0.05) !important;
    }

    /* Gallery — cards maiores */
    .praia-v2-gallery-label {
        margin-bottom: 6px;
        font-size: 0.7rem;
    }

    .praia-v2-gallery {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
        gap: 8px;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .praia-v2-gallery::-webkit-scrollbar {
        display: none;
    }

    .praia-v2-card {
        width: 140px;
        height: 175px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .praia-v2-gallery-hint {
        margin-top: 6px;
        font-size: 0.6rem;
    }

    /* Lightbox mobile */
    .praia-v2-lightbox-content {
        max-width: 95vw;
    }

    .praia-v2-lb-arrow {
        width: 40px; height: 40px;
        font-size: 1.1rem;
    }

    .praia-v2-lb-arrow-prev { left: 10px; }
    .praia-v2-lb-arrow-next { right: 10px; }

    .praia-v2-lightbox-close {
        top: 15px; right: 15px;
        width: 42px; height: 42px;
        font-size: 1.1rem;
    }

    .praia-v2-lightbox-caption {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .praia-v2-title { font-size: 1.7rem; }

    .praia-v2-tech-btn {
        min-width: 55px;
        padding: 7px 4px;
        font-size: 0.6rem;
    }

    .praia-v2-card {
        width: 105px;
        height: 140px;
    }
}
