/* ============================================================================
   PLAYA AZUL BOUTIQUE — DISEÑO 2026
   Rediseño completo: Profesional, moderno, tema tropical
   Mobile-first — Optimizado para Android
   ============================================================================ */

/* ============ VARIABLES ============ */
:root {
    /* Paleta tropical - Teal/Azul océano + Coral */
    --pz-primary: #0D9488;
    --pz-primary-dark: #0F766E;
    --pz-primary-light: #14B8A6;
    --pz-primary-glow: rgba(13, 148, 136, 0.35);

    --pz-accent: #F97316;
    --pz-accent-dark: #EA580C;
    --pz-accent-light: #FB923C;

    --pz-ocean: #0C4A6E;
    --pz-ocean-light: #0369A1;

    --pz-whatsapp: #25D366;
    --pz-whatsapp-dark: #128C7E;

    /* Fondos */
    --pz-bg: #FAFDF9;
    --pz-bg-alt: #F0FDF4;
    --pz-surface: #FFFFFF;

    /* Texto */
    --pz-text: #1E293B;
    --pz-text-secondary: #64748B;
    --pz-text-muted: #94A3B8;

    /* Bordes */
    --pz-border: #E2E8F0;
    --pz-border-light: #F1F5F9;

    /* Estados */
    --pz-success: #10B981;
    --pz-warning: #F59E0B;
    --pz-danger: #EF4444;

    /* Sombras */
    --pz-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --pz-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --pz-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --pz-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --pz-shadow-primary: 0 8px 24px var(--pz-primary-glow);

    /* Bordes */
    --pz-radius-sm: 8px;
    --pz-radius: 12px;
    --pz-radius-md: 16px;
    --pz-radius-lg: 24px;
    --pz-radius-full: 9999px;

    /* Safe areas */
    --pz-safe-top: env(safe-area-inset-top, 0px);
    --pz-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body.pz-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pz-text);
    background-color: var(--pz-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button,
input,
select {
    font-family: inherit;
    font-size: 16px;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ============ CONTENEDOR ============ */
.pz-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .pz-container {
        padding: 0 24px;
    }
}

/* ============ BOTONES ============ */
.pz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: var(--pz-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 44px;
    border: none;
}

.pz-btn:active {
    transform: scale(0.97);
}

.pz-btn-primary {
    background: linear-gradient(135deg, var(--pz-primary) 0%, var(--pz-primary-dark) 100%);
    color: white;
    box-shadow: var(--pz-shadow-primary);
}

.pz-btn-primary:hover {
    background: linear-gradient(135deg, var(--pz-primary-light) 0%, var(--pz-primary) 100%);
    transform: translateY(-2px);
}

.pz-btn-whatsapp {
    background: linear-gradient(135deg, var(--pz-whatsapp) 0%, var(--pz-whatsapp-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.pz-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.pz-btn-ghost {
    background: transparent;
    color: var(--pz-text);
    border: 2px solid var(--pz-border);
}

.pz-btn-ghost:hover {
    border-color: var(--pz-primary);
    color: var(--pz-primary);
    background: rgba(13, 148, 136, 0.05);
}

.pz-btn-lg {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: var(--pz-radius-md);
}

.pz-btn-sm {
    padding: 10px 14px;
    font-size: 13px;
}

.pz-btn-block {
    width: 100%;
}

/* ============ HEADER ============ */
.pz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pz-border-light);
    transition: all 0.3s ease;
    padding-top: var(--pz-safe-top);
}

.pz-header.scrolled {
    box-shadow: var(--pz-shadow);
}

.pz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

/* Logo */
.pz-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pz-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--pz-primary) 0%, var(--pz-ocean-light) 100%);
    border-radius: var(--pz-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--pz-shadow-primary);
}

.pz-logo-text {
    display: flex;
    flex-direction: column;
}

.pz-logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--pz-text);
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.pz-logo-sub {
    font-size: 10px;
    color: var(--pz-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Nav links */
.pz-nav-links {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .pz-nav-links {
        display: flex;
    }
}

.pz-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--pz-text-secondary);
    padding: 8px 14px;
    border-radius: var(--pz-radius-sm);
    transition: all 0.2s ease;
}

.pz-nav-link:hover {
    color: var(--pz-primary);
    background: rgba(13, 148, 136, 0.06);
}

.pz-nav-link.active {
    color: var(--pz-primary);
    background: rgba(13, 148, 136, 0.1);
    font-weight: 600;
}

/* Nav actions */
.pz-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pz-nav-phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pz-text);
}

.pz-nav-phone i {
    color: var(--pz-primary);
}

@media (min-width: 1200px) {
    .pz-nav-phone {
        display: flex;
    }
}

.pz-nav-actions .pz-btn-ghost,
.pz-nav-actions .pz-btn-primary {
    display: none;
}

@media (min-width: 768px) {
    .pz-nav-actions .pz-btn-ghost {
        display: inline-flex;
    }
}

@media (min-width: 1024px) {
    .pz-nav-actions .pz-btn-primary {
        display: inline-flex;
    }
}

/* Hamburger */
.pz-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--pz-bg-alt);
    border-radius: var(--pz-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pz-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--pz-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pz-menu-toggle:hover {
    background: rgba(13, 148, 136, 0.1);
}

.pz-menu-toggle:hover span {
    background: var(--pz-primary);
}

@media (min-width: 768px) {
    .pz-menu-toggle {
        display: none;
    }
}

/* ============ MENÚ MÓVIL ============ */
.pz-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pz-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.pz-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--pz-surface);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: calc(20px + var(--pz-safe-top));
    padding-bottom: calc(20px + var(--pz-safe-bottom));
}

.pz-mobile-menu.open {
    transform: translateX(0);
}

.pz-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pz-border-light);
}

.pz-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pz-bg-alt);
    border-radius: var(--pz-radius-sm);
    font-size: 18px;
    color: var(--pz-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pz-mobile-close:hover {
    background: var(--pz-danger);
    color: white;
}

.pz-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pz-mobile-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pz-text-secondary);
    border-radius: var(--pz-radius);
    transition: all 0.2s ease;
}

.pz-mobile-link i {
    width: 22px;
    text-align: center;
    font-size: 16px;
    color: var(--pz-primary);
}

.pz-mobile-link:hover,
.pz-mobile-link.active {
    background: rgba(13, 148, 136, 0.08);
    color: var(--pz-primary);
}

.pz-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--pz-border-light);
}

/* ============ HERO ============ */
.pz-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    padding-top: calc(120px + var(--pz-safe-top));
    overflow: hidden;
}

.pz-hero-bg {
    position: absolute;
    inset: 0;
}

.pz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(12, 74, 110, 0.7) 0%,
            rgba(12, 74, 110, 0.5) 50%,
            rgba(12, 74, 110, 0.8) 100%);
}

.pz-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--pz-radius-full);
    margin-bottom: 24px;
}

.pz-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pzPulse 2s infinite;
}

@keyframes pzPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pz-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.pz-title-accent {
    color: #5EEAD4;
}

.pz-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.pz-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Features del hero */
.pz-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.pz-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--pz-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pz-feature i {
    color: #5EEAD4;
}

/* Onda del hero */
.pz-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.pz-hero-wave svg {
    width: 100%;
    height: 60px;
}

@media (min-width: 768px) {
    .pz-hero-wave svg {
        height: 100px;
    }
}

/* ============ BÚSQUEDA ============ */
.pz-search-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 40px;
}

.pz-search-card {
    background: var(--pz-surface);
    border-radius: var(--pz-radius-lg);
    padding: 24px;
    box-shadow: var(--pz-shadow-lg);
    border: 1px solid var(--pz-border-light);
}

@media (min-width: 768px) {
    .pz-search-card {
        padding: 32px;
    }
}

.pz-search-header {
    margin-bottom: 20px;
}

.pz-search-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pz-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pz-search-title i {
    color: var(--pz-primary);
}

.pz-search-subtitle {
    font-size: 14px;
    color: var(--pz-text-muted);
    margin-top: 4px;
}

.pz-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .pz-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pz-search-grid {
        grid-template-columns: 1fr 1fr 1fr auto;
        align-items: end;
    }
}

.pz-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pz-field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--pz-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pz-field-label i {
    color: var(--pz-primary);
}

.pz-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--pz-bg);
    border: 2px solid var(--pz-border);
    border-radius: var(--pz-radius);
    font-size: 15px;
    color: var(--pz-text);
    transition: all 0.2s ease;
}

.pz-input:focus {
    border-color: var(--pz-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.pz-select-wrapper {
    position: relative;
}

.pz-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.pz-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pz-text-muted);
    pointer-events: none;
    font-size: 12px;
}

.pz-btn-search {
    width: 100%;
    height: 50px;
}

@media (min-width: 992px) {
    .pz-btn-search {
        width: auto;
        padding: 0 32px;
    }
}

.pz-search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--pz-radius);
    font-size: 14px;
    color: #059669;
}

.pz-search-result[hidden] {
    display: none;
}

/* ============ SECCIONES ============ */
.pz-section-head {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pz-section-center {
    text-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .pz-section-head:not(.pz-section-center) {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.pz-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pz-primary);
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 14px;
    border-radius: var(--pz-radius-full);
    margin-bottom: 12px;
    width: fit-content;
}

.pz-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--pz-text);
    margin-bottom: 8px;
}

.pz-section-desc {
    font-size: 15px;
    color: var(--pz-text-secondary);
    max-width: 500px;
}

.pz-section-center .pz-section-desc {
    margin: 0 auto;
}

.pz-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pz-primary-dark);
    background: rgba(13, 148, 136, 0.1);
    padding: 10px 18px;
    border-radius: var(--pz-radius-full);
}

/* ============ HABITACIONES ============ */
.pz-rooms {
    padding: 60px 0;
    background: var(--pz-bg);
}

/* Filtros */
.pz-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.pz-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pz-text-secondary);
    background: var(--pz-surface);
    border: 2px solid var(--pz-border);
    border-radius: var(--pz-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pz-filter-chip:hover {
    border-color: var(--pz-primary);
    color: var(--pz-primary);
}

.pz-filter-chip.active {
    background: var(--pz-primary);
    border-color: var(--pz-primary);
    color: white;
    box-shadow: var(--pz-shadow-primary);
}

/* Grid de habitaciones */
.pz-rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .pz-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tarjeta de habitación */
.pz-room-card {
    background: var(--pz-surface);
    border-radius: var(--pz-radius-lg);
    overflow: hidden;
    border: 1px solid var(--pz-border-light);
    box-shadow: var(--pz-shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pz-room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pz-shadow-lg);
    border-color: var(--pz-primary-light);
}

/* Imagen */
.pz-room-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pz-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pz-room-card:hover .pz-room-img {
    transform: scale(1.05);
}

.pz-room-type {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: var(--pz-primary);
    padding: 6px 14px;
    border-radius: var(--pz-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pz-room-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pz-text);
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: var(--pz-radius-full);
    box-shadow: var(--pz-shadow-sm);
}

.pz-room-featured i {
    color: var(--pz-warning);
}

/* Cuerpo */
.pz-room-body {
    padding: 20px;
}

.pz-room-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--pz-text);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.pz-room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.pz-room-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pz-text-secondary);
}

.pz-room-spec i {
    color: var(--pz-primary);
}

.pz-room-desc {
    font-size: 14px;
    color: var(--pz-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.pz-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--pz-border-light);
    border-bottom: 1px solid var(--pz-border-light);
    margin-bottom: 16px;
}

.pz-room-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--pz-text-secondary);
}

.pz-room-amenities i {
    color: var(--pz-success);
    font-size: 11px;
}

/* Footer de tarjeta */
.pz-room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pz-room-price {
    display: flex;
    align-items: baseline;
}

.pz-price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--pz-text-secondary);
}

.pz-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--pz-text);
    line-height: 1;
}

.pz-price-night {
    font-size: 14px;
    color: var(--pz-text-muted);
    margin-left: 4px;
}

.pz-room-actions {
    display: flex;
    gap: 10px;
}

/* ============ SERVICIOS ============ */
.pz-services {
    padding: 60px 0;
    background: var(--pz-bg-alt);
}

.pz-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 500px) {
    .pz-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pz-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.pz-service-card {
    background: var(--pz-surface);
    border-radius: var(--pz-radius-lg);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--pz-border-light);
    transition: all 0.3s ease;
}

.pz-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pz-shadow-md);
}

.pz-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--pz-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.pz-icon-teal {
    background: rgba(13, 148, 136, 0.12);
    color: var(--pz-primary);
}

.pz-icon-blue {
    background: rgba(3, 105, 161, 0.12);
    color: var(--pz-ocean-light);
}

.pz-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.pz-icon-orange {
    background: rgba(249, 115, 22, 0.12);
    color: var(--pz-accent);
}

.pz-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pz-text);
    margin-bottom: 8px;
}

.pz-service-card p {
    font-size: 13px;
    color: var(--pz-text-secondary);
    line-height: 1.6;
}

/* ============ COTIZADOR ============ */
.pz-quote {
    padding: 60px 0;
    background: var(--pz-bg);
}

.pz-quote-card {
    background: var(--pz-surface);
    border-radius: var(--pz-radius-lg);
    padding: 24px;
    box-shadow: var(--pz-shadow-lg);
    border: 1px solid var(--pz-border-light);
}

@media (min-width: 768px) {
    .pz-quote-card {
        padding: 32px;
    }
}

.pz-quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 992px) {
    .pz-quote-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }
}

/* Slider */
.pz-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.pz-nights-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--pz-primary);
    background: rgba(13, 148, 136, 0.1);
    padding: 4px 12px;
    border-radius: var(--pz-radius-full);
}

.pz-slider {
    width: 100%;
    height: 8px;
    appearance: none;
    -webkit-appearance: none;
    background: var(--pz-border);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.pz-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--pz-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px var(--pz-primary-glow);
    transition: all 0.2s ease;
}

.pz-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--pz-primary-dark);
}

.pz-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: var(--pz-text-muted);
}

.pz-discount {
    color: var(--pz-primary);
    font-weight: 600;
}

/* Extras */
.pz-extras-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 500px) {
    .pz-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pz-extra {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--pz-bg);
    border: 2px solid var(--pz-border);
    border-radius: var(--pz-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pz-extra:hover {
    border-color: var(--pz-primary-light);
}

.pz-extra input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--pz-primary);
    cursor: pointer;
}

.pz-extra input[type="checkbox"]:checked+.pz-extra-info {
    color: var(--pz-primary);
}

.pz-extra-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pz-extra-info span {
    font-size: 14px;
    font-weight: 600;
    color: var(--pz-text);
}

.pz-extra-info small {
    font-size: 12px;
    color: var(--pz-text-muted);
}

/* Resumen */
.pz-summary-card {
    background: linear-gradient(135deg, var(--pz-ocean) 0%, #164E63 100%);
    border-radius: var(--pz-radius-lg);
    padding: 24px;
    color: white;
}

.pz-summary-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pz-summary-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5EEAD4;
    background: rgba(94, 234, 212, 0.15);
    padding: 6px 12px;
    border-radius: var(--pz-radius-full);
    margin-bottom: 12px;
}

.pz-summary-room {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pz-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pz-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.pz-summary-line strong {
    color: white;
}

.pz-text-green {
    color: #4ADE80 !important;
}

.pz-summary-total {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    text-align: center;
}

.pz-summary-total span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.pz-total-amount {
    font-size: 36px;
    font-weight: 800;
    color: #5EEAD4;
    margin-top: 4px;
}

/* ============ GALERÍA ============ */
.pz-gallery {
    padding: 60px 0;
    background: var(--pz-bg-alt);
}

.pz-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .pz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pz-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pz-gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.pz-gallery-item {
    position: relative;
    border-radius: var(--pz-radius-lg);
    overflow: hidden;
    height: 200px;
}

.pz-gallery-large {
    height: 100%;
    min-height: 200px;
}

@media (min-width: 992px) {
    .pz-gallery-large {
        height: 416px;
    }
}

.pz-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pz-gallery-item:hover img {
    transform: scale(1.05);
}

.pz-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* ============ CTA ============ */
.pz-cta {
    padding: 40px 0 60px;
}

.pz-cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--pz-ocean) 0%, #164E63 100%);
    border-radius: var(--pz-radius-lg);
    padding: 40px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .pz-cta-card {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 48px;
    }
}

.pz-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(13, 148, 136, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(94, 234, 212, 0.15) 0%, transparent 50%);
}

.pz-cta-content {
    position: relative;
    z-index: 2;
}

.pz-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.pz-cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pz-cta-content strong {
    color: #5EEAD4;
}

.pz-cta-actions {
    position: relative;
    z-index: 2;
}

/* ============ FOOTER ============ */
.pz-footer {
    background: var(--pz-ocean);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.pz-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 600px) {
    .pz-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pz-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 48px;
    }
}

.pz-footer .pz-logo-name {
    color: white;
}

.pz-footer .pz-logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.pz-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.pz-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.pz-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pz-radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.2s ease;
}

.pz-social a:hover {
    background: var(--pz-primary);
    color: white;
    transform: translateY(-2px);
}

.pz-footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pz-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pz-footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.pz-footer-col ul a:hover {
    color: #5EEAD4;
    padding-left: 4px;
}

.pz-footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.pz-footer-contact ul li i {
    color: #5EEAD4;
    margin-top: 2px;
}

.pz-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    padding-bottom: calc(20px + var(--pz-safe-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .pz-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.pz-footer-bottom p {
    font-size: 13px;
}

.pz-footer-links {
    display: flex;
    gap: 20px;
}

.pz-footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.pz-footer-links a:hover {
    color: #5EEAD4;
}

/* ============ BOTÓN FLOTANTE WHATSAPP ============ */
.pz-fab-whatsapp {
    position: fixed;
    bottom: 20px;
    bottom: calc(20px + var(--pz-safe-bottom));
    right: 16px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pz-whatsapp) 0%, var(--pz-whatsapp-dark) 100%);
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.pz-fab-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.pz-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--pz-whatsapp);
    animation: pzFabPulse 2s infinite;
    z-index: -1;
}

@keyframes pzFabPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============ ANIMACIONES ============ */
@keyframes pzFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pz-room-card {
    animation: pzFadeInUp 0.5s ease forwards;
}

.pz-room-card:nth-child(1) {
    animation-delay: 0.05s;
}

.pz-room-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pz-room-card:nth-child(3) {
    animation-delay: 0.15s;
}

.pz-room-card:nth-child(4) {
    animation-delay: 0.2s;
}

/* ============ ACCESIBILIDAD ============ */
@media (prefers-reduced-motion: reduce) {

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

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 3px solid var(--pz-primary);
    outline-offset: 2px;
}

::selection {
    background: rgba(13, 148, 136, 0.2);
}