/* ═══════════════════════════════════════════════════════════════
   PAMPA CINEMA PRODUCCIONES — PREMIUM CINEMATIC EDITION
   Iquique, Chile · 2026
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=Bebas+Neue&family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-bright: #f5d97e;
    --gold-dark: #96721E;
    --gold-deep: #5e4612;
    --black: #060606;
    --dark: #0a0a0a;
    --dark-2: #0e0e0e;
    --card: #161616;
    --card-2: #1a1a1a;
    --text: #f2f2f2;
    --muted: #888888;
    --line: rgba(201, 168, 76, 0.15);
    --line-strong: rgba(201, 168, 76, 0.4);
    --green: #22C55E;
    --red: #EF4444;
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.25);
    --shadow-gold-soft: 0 10px 30px rgba(201, 168, 76, 0.12);
    --t-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --max: 1320px;
    --gold-grad: linear-gradient(135deg, #96721E 0%, #C9A84C 35%, #E8C96A 50%, #C9A84C 65%, #96721E 100%);
    --gold-grad-2: linear-gradient(90deg, transparent, var(--gold), transparent);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--gold); color: var(--black); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

/* ═════════════ CUSTOM CURSOR ═════════════ */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.3s, transform 0.15s ease-out;
    will-change: transform;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cursor-ring.hover {
    width: 60px; height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-light);
}
@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ═════════════ ATMOSPHERE ═════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 5%, rgba(201, 168, 76, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(201, 168, 76, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%),
        var(--black);
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
}

/* Aurora background sweep */
.aurora {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(201, 168, 76, 0.08) 60deg, transparent 120deg, rgba(201, 168, 76, 0.05) 240deg, transparent 360deg);
    animation: auroraRotate 60s linear infinite;
    filter: blur(60px);
}

@keyframes auroraRotate {
    to { transform: rotate(360deg); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--t); }

/* ═════════════ TYPOGRAPHY ═════════════ */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
}

.display-font { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; font-weight: 400; }
.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }

.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.italic-gold { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-weight: 400; }

/* ═════════════ LAYOUT ═════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

section {
    padding: 8rem 0;
    position: relative;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-grad-2);
    margin: 1.5rem auto;
}

/* ═════════════ LOADER ═════════════ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}
.preloader.done {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    text-align: center;
}
.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.6));
    animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}
.preloader-text {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    letter-spacing: 0.5em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.preloader-bar {
    width: 200px;
    height: 1px;
    background: var(--line);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.preloader-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform-origin: left;
    animation: loaderBar 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes loaderBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* ═════════════ NAVBAR ═════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: var(--t);
    background: linear-gradient(180deg, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.7) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(6, 6, 6, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    transition: var(--t);
}
.brand:hover { transform: translateY(-1px); }

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.4));
    transition: var(--t);
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }

.brand-name { line-height: 1; }
.brand-name small {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text);
    position: relative;
    padding: 0.4rem 0;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all var(--t);
    transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.75rem 1.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    font-size: 0.75rem !important;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}
.nav-cta::after { display: none !important; }
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}
.nav-cta:hover { color: var(--black) !important; }
.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.6rem;
    cursor: none;
    z-index: 1001;
}

/* ═════════════ HERO CINEMATIC ═════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    bottom: -8%;
    left: -2%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 18vw, 20rem);
    color: rgba(201, 168, 76, 0.04);
    letter-spacing: -0.02em;
    pointer-events: none;
    line-height: 0.85;
    z-index: 0;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--gold);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(201, 168, 76, 0.05);
    letter-spacing: 0.05em;
}
.hero-tag .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}
.hero h1 .line span {
    display: block;
    transform: translateY(110%);
    animation: heroLineUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.3s; }
@keyframes heroLineUp {
    to { transform: translateY(0); }
}

.hero h1 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    background: var(--gold-grad);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-meta {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.hero-meta-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}
.hero-meta-item .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-frame::before, .hero-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    transition: var(--t);
}
.hero-frame::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.hero-frame::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }
.hero-frame:hover::before, .hero-frame:hover::after { width: 80px; height: 80px; }

.hero-logo-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(201, 168, 76, 0.4));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-ring {
    position: absolute;
    width: 110%;
    aspect-ratio: 1;
    border: 1px dashed rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    animation: spin 50s linear infinite;
}
.hero-ring:nth-of-type(2) {
    width: 130%;
    border-color: rgba(201, 168, 76, 0.1);
    animation-direction: reverse;
    animation-duration: 80s;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orbit-item {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    animation: orbit 25s linear infinite;
}
.hero-orbit-item:nth-child(1) { animation-duration: 25s; }
.hero-orbit-item:nth-child(2) { animation-duration: 35s; animation-delay: -8s; opacity: 0.6; }

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(220px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(220px) rotate(-360deg);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    font-family: 'Bebas Neue', sans-serif;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}
.scroll-cue::after {
    content: '';
    width: 1px;
    height: 50px;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═════════════ BUTTONS ═════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.05rem 2.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1.5px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--line-strong);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: -1;
}
.btn-outline:hover::before { transform: scaleY(1); transform-origin: top; }
.btn-outline:hover {
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 1.5px solid #25d366;
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-arrow::after {
    content: '→';
    transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ═════════════ SECTION HEADERS ═════════════ */
.section-head {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-head h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.section-head .lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 1.8rem auto 0;
    line-height: 1.7;
}

.section-head.left {
    text-align: left;
    max-width: 700px;
    margin-bottom: 4rem;
}
.section-head.left .section-divider { margin-left: 0; }

.section-num {
    position: absolute;
    top: -3rem;
    right: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9rem;
    color: rgba(201, 168, 76, 0.06);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* ═════════════ MARQUEE ═════════════ */
.marquee {
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.06), transparent);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 4rem 0;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text);
    white-space: nowrap;
}
.marquee-item .star { color: var(--gold); font-style: normal; }

@keyframes marqueeScroll {
    to { transform: translateX(calc(-50% - 2rem)); }
}

/* ═════════════ PILARES ═════════════ */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pilar {
    padding: 2.5rem 2rem;
    background: var(--card);
    border: 1px solid var(--line);
    transition: var(--t);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.pilar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, transparent 50%);
    opacity: 0;
    transition: var(--t);
}
.pilar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50px; height: 2px;
    background: var(--gold);
    transition: width var(--t);
}

.pilar:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: var(--card-2);
}
.pilar:hover::before { opacity: 1; }
.pilar:hover::after { width: 100%; }

.pilar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

.pilar-icon {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.3));
    transition: var(--t);
}
.pilar:hover .pilar-icon { transform: scale(1.1) rotate(-5deg); }

.pilar h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    color: var(--text);
}

.pilar p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═════════════ PAQUETES ═════════════ */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.paquete {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 2.8rem 2rem;
    position: relative;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: none;
}

.paquete::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--paquete-color, var(--gold));
}

.paquete::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--paquete-glow), transparent 60%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}
.paquete:hover::after { opacity: 0.6; }

.paquete-bronce {
    --paquete-color: linear-gradient(90deg, #CD7F32, #e0a070);
    --paquete-glow: rgba(205, 127, 50, 0.15);
}
.paquete-oro {
    --paquete-color: linear-gradient(90deg, #C9A84C, #F5C800);
    --paquete-glow: rgba(245, 200, 0, 0.18);
}
.paquete-platino {
    --paquete-color: linear-gradient(90deg, #c0c0c0, #e8e8e8);
    --paquete-glow: rgba(192, 192, 192, 0.18);
}
.paquete-diamante {
    --paquete-color: linear-gradient(90deg, #7AD4F5, #b8e0f0);
    --paquete-glow: rgba(122, 212, 245, 0.2);
}

.paquete:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: var(--shadow-deep);
}

.paquete-tier {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.4em;
    margin-bottom: 0.4rem;
    display: block;
}

.paquete-bronce .paquete-tier { color: #e0a070; }
.paquete-oro .paquete-tier { color: var(--gold); }
.paquete-platino .paquete-tier { color: #d8d8d8; }
.paquete-diamante .paquete-tier { color: #b8e0f0; }

.paquete-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 1.3rem;
}

.paquete-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.paquete-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
}

.paquete-ideal {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 1rem 0;
    margin: 1.4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    line-height: 1.6;
}
.paquete-ideal strong {
    color: var(--gold);
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.4rem;
}

.paquete ul {
    list-style: none;
    margin: 1.2rem 0 1.8rem;
    flex: 1;
}

.paquete ul li {
    padding: 0.6rem 0 0.6rem 1.6rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.5;
}
.paquete ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.paquete ul li.no::before { content: '✕'; color: #b04545; }
.paquete ul li.no {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    text-decoration-color: rgba(176, 69, 69, 0.3);
}

.paquete .btn { width: 100%; justify-content: center; }

.paquete-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.35rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ═════════════ EQUIPO ═════════════ */
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.equipo-card {
    background: var(--card);
    padding: 2rem;
    border: 1px solid var(--line);
    transition: var(--t);
    position: relative;
    overflow: hidden;
    cursor: none;
}
.equipo-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.08), transparent);
    transition: left 0.8s ease;
}
.equipo-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.equipo-card:hover::before { left: 100%; }

.equipo-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.7rem;
    display: block;
}

.equipo-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.equipo-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

.equipo-stars {
    margin-top: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* ═════════════ EVENTOS ═════════════ */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.evento-card {
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--card);
    transition: var(--t);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.evento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
    opacity: 0;
    transition: var(--t);
}
.evento-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.02);
}
.evento-card:hover::before { opacity: 1; }

.evento-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.4));
    transition: var(--t);
}
.evento-card:hover .evento-icon { transform: scale(1.15) rotate(-5deg); }

.evento-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.evento-card p {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ═════════════ TIMELINE PROCESO ═════════════ */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    padding: 1.5rem 0 2.5rem 90px;
}

.timeline-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--card);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 2;
    transition: var(--t);
    box-shadow: 0 0 0 8px var(--black);
}

.timeline-item:hover .timeline-num {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.timeline-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.timeline-item h3 em { color: var(--gold); font-style: italic; }

.timeline-item p {
    color: var(--muted);
    line-height: 1.7;
}

/* ═════════════ FAQ ═════════════ */
.faq-list { max-width: 880px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--line);
    margin-bottom: 1rem;
    background: var(--card);
    transition: var(--t);
    overflow: hidden;
}

.faq-item:hover { border-color: var(--gold); }
.faq-item.open { border-color: var(--gold); }

.faq-question {
    padding: 1.5rem 1.8rem;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    color: var(--muted);
    padding: 0 1.8rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.8rem 1.8rem;
}

/* ═════════════ TESTIMONIOS ═════════════ */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonio {
    padding: 2.5rem 2rem;
    background: var(--card);
    border: 1px solid var(--line);
    transition: var(--t);
    position: relative;
    cursor: none;
}

.testimonio::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.2;
}

.testimonio:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonio-stars {
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 0.15em;
}

.testimonio-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
}

.testimonio-avatar {
    width: 46px;
    height: 46px;
    background: var(--gold-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

.testimonio-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}
.testimonio-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

/* ═════════════ COTIZADOR ═════════════ */
.cotizador-wrap {
    background: linear-gradient(180deg, var(--card) 0%, var(--dark) 100%);
    border: 1px solid var(--line-strong);
    padding: 3.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: var(--shadow-deep);
    position: relative;
    overflow: hidden;
}

.cotizador-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-grad);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

.cotizador-step { margin-bottom: 3rem; }

.cotizador-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-num {
    width: 32px; height: 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.paquete-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.paquete-option {
    padding: 1.5rem 1.2rem;
    border: 2px solid var(--line);
    background: var(--card-2);
    cursor: none;
    text-align: center;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.paquete-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.paquete-option:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.paquete-option.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}
.paquete-option.selected::after {
    content: '✓';
    position: absolute;
    top: 0.5rem; right: 0.7rem;
    width: 24px; height: 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.paquete-option .tier-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    color: var(--gold);
}
.paquete-option .tier-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
    margin: 0.4rem 0;
}
.paquete-option .tier-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 500;
}

.extras-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.7rem;
}

.extra-check {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--line);
    cursor: none;
    transition: var(--t);
    background: var(--card-2);
    position: relative;
    overflow: hidden;
}

.extra-check::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width var(--t);
}

.extra-check:hover { border-color: var(--gold); }
.extra-check input { accent-color: var(--gold); cursor: none; transform: scale(1.2); }
.extra-check.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}
.extra-check.active::after { width: 3px; }

.extra-check label {
    flex: 1;
    cursor: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.extra-check label .precio {
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

.cotizador-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field label {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.field input, .field select, .field textarea {
    background: var(--card-2);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.95rem 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--t-fast);
    outline: none;
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.field textarea { min-height: 110px; resize: vertical; }

.totalizador {
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
    border: 2px solid var(--gold);
    padding: 2.2rem;
    text-align: center;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.totalizador::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.15), transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.totalizador-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    position: relative;
}

.totalizador-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    color: var(--text);
    font-weight: 500;
    line-height: 1;
    margin: 0.7rem 0;
    position: relative;
    transition: transform 0.3s ease;
}
.totalizador-amount.animate { animation: bumpUp 0.4s ease; }
@keyframes bumpUp {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: var(--gold); }
    100% { transform: scale(1); }
}

.totalizador-detalle {
    color: var(--muted);
    font-size: 0.88rem;
    position: relative;
}

/* ═════════════ GALERÍA PREMIUM ═════════════ */
.galeria-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    cursor: none;
    transition: var(--t-fast);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    gap: 0.6rem;
}

.galeria-grid .galeria-item:nth-child(7n+1) { grid-row: span 2; }
.galeria-grid .galeria-item:nth-child(7n+5) { grid-column: span 2; }

.galeria-item {
    background: var(--card);
    overflow: hidden;
    position: relative;
    cursor: none;
    border: 1px solid var(--line);
    transition: var(--t);
}

.galeria-item:hover {
    transform: scale(0.98);
    border-color: var(--gold);
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.3em;
    background:
        linear-gradient(135deg, rgba(201,168,76,0.08), transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 60px),
        var(--card-2);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    transition: var(--t);
}

.galeria-placeholder .ph-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.galeria-item:hover .galeria-placeholder {
    background:
        linear-gradient(135deg, rgba(201,168,76,0.18), transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.06) 30px, rgba(201,168,76,0.06) 60px),
        var(--card-2);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6,6,6,0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--t);
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-overlay h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.galeria-overlay span {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-size: 0.78rem;
}

/* ═════════════ TABLA ═════════════ */
.tabla-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--card);
}

.tabla {
    width: 100%;
    border-collapse: collapse;
}

.tabla thead {
    background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.05));
}

.tabla th {
    text-align: left;
    padding: 1.3rem 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.tabla td {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 0.92rem;
}

.tabla tr:hover td { background: rgba(201, 168, 76, 0.04); }

.tabla .precio-celda {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.tabla-categoria {
    background: var(--card-2) !important;
}
.tabla-categoria td {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold) !important;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem !important;
}

/* ═════════════ EXTRAS ═════════════ */
.extras-categoria { margin-bottom: 4rem; }

.extras-categoria-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.extras-categoria-title::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.extras-categoria-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
    margin-left: 65px;
    font-family: 'Cormorant Garamond', serif;
}

.extras-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1rem;
}

.extra-card {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 1.7rem 1.5rem;
    transition: var(--t);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.extra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent 50%);
    opacity: 0;
    transition: var(--t);
}

.extra-card:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}
.extra-card:hover::before { opacity: 1; }

.extra-info { position: relative; }

.extra-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.extra-info p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.extra-precio {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

/* ═════════════ CTA BIG ═════════════ */
.cta-big {
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.cta-big::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-big::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-grad-2);
}

.cta-big h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.05;
}

.cta-big p {
    color: var(--muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ═════════════ CONTACTO GRID ═════════════ */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contacto-info { position: sticky; top: 100px; }
.contacto-info h2 { margin-bottom: 1.5rem; font-size: 2.4rem; }
.contacto-info > p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }

.contacto-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    transition: var(--t-fast);
}
.contacto-detail:hover { padding-left: 0.5rem; }

.contacto-detail-icon {
    width: 48px; height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--t);
}
.contacto-detail:hover .contacto-detail-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(15deg) scale(1.1);
}

.contacto-detail-content small {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}
.contacto-detail-content strong {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

.contacto-form {
    background: var(--card);
    padding: 3rem 2.5rem;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.contacto-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-grad);
}

/* ═════════════ FOOTER ═════════════ */
footer {
    background: #030303;
    border-top: 1px solid var(--line);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: 'PAMPA';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14rem;
    color: rgba(201,168,76,0.04);
    letter-spacing: 0.1em;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.footer-brand img {
    height: 60px; width: 60px;
    filter: drop-shadow(0 4px 12px rgba(201,168,76,0.4));
}
.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    line-height: 1;
}
.footer-brand-text small {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-top: 4px;
}

.footer-text {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
}
.footer-col ul li a { color: var(--muted); transition: var(--t-fast); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--t);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-4px) rotate(360deg);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.85rem;
    position: relative;
}

/* ═════════════ WHATSAPP FLOAT ═════════════ */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: var(--t);
    cursor: none;
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: wavePulse 2s ease-out infinite;
}

@keyframes wavePulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.wa-float:hover {
    transform: scale(1.15);
    background: #1ebe5a;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--text);
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    border: 1px solid var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: var(--t);
}
.wa-float:hover .wa-tooltip { opacity: 1; right: 80px; }

/* ═════════════ PAGE HEADER ═════════════ */
.page-header {
    padding: 160px 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(201,168,76,0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--card) 0%, transparent 100%);
}

.page-header h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.page-header > .container > p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 1rem auto 0;
    position: relative;
}

.page-header-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
}

/* ═════════════ REVEAL ═════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal][data-delay="1"].visible { transition-delay: 0.1s; }
[data-reveal][data-delay="2"].visible { transition-delay: 0.2s; }
[data-reveal][data-delay="3"].visible { transition-delay: 0.3s; }
[data-reveal][data-delay="4"].visible { transition-delay: 0.4s; }

[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].visible { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal="zoom"].visible { transform: scale(1); }

/* Cuando Motion (motion.dev) está activo, controla los reveals por estilos
   inline: desactivamos la transición CSS para que no compitan. */
body.motion-on [data-reveal] { transition: none; }
.btn-primary, .nav-cta, .wa-float { will-change: transform; }

/* Cotizador — toggle de modo (paquete / a medida) */
.modo-btn {
    background: transparent; border: none; color: var(--muted);
    padding: 0.85rem 1rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em;
    font-size: 0.95rem; cursor: pointer; border-radius: 4px; transition: background 0.25s, color 0.25s;
}
.modo-btn.active { background: var(--gold); color: var(--black); }
.modo-btn:hover:not(.active) { color: var(--text); background: rgba(201,168,76,0.08); }

/* ═════════════ MODAL ═════════════ */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modal-bg.show { display: flex; opacity: 1; }

.modal-content {
    background: var(--card);
    border: 1px solid var(--gold);
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-bg.show .modal-content { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 50%;
    cursor: none;
    transition: var(--t-fast);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ═════════════ TOAST ═════════════ */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--card);
    border: 1px solid var(--gold);
    padding: 1.2rem 1.5rem;
    border-left: 4px solid var(--gold);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9000;
    max-width: 360px;
    box-shadow: var(--shadow-deep);
}
.toast.show { transform: translateX(0); }

.toast-title {
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}
.toast-msg { color: var(--text); font-size: 0.9rem; }

/* ═════════════ PROGRESS BAR ═════════════ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 1001;
    width: 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold);
}

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .contacto-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contacto-info { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cotizador-form-grid { grid-template-columns: 1fr; }
    .scroll-cue { display: none; }
}

@media (max-width: 720px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    section { padding: 5rem 0; }
    .container { padding: 0 1.2rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--black);
        border-left: 1px solid var(--line);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; width: 100%; cursor: pointer; }
    .nav-toggle { display: block; cursor: pointer; }
    .footer-grid { grid-template-columns: 1fr; }
    .cotizador-wrap { padding: 2rem 1.5rem; }
    .extras-checkbox-grid { grid-template-columns: 1fr; }
    .paquete-options { grid-template-columns: 1fr 1fr; }
    .hero-meta { grid-template-columns: 1fr 1fr; }
    .galeria-grid { grid-auto-rows: 220px; }
    .galeria-grid .galeria-item:nth-child(7n+1) { grid-row: span 1; }
    .galeria-grid .galeria-item:nth-child(7n+5) { grid-column: span 1; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 65px; }
    .timeline-num { width: 45px; height: 45px; font-size: 1.1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .extras-categoria-sub { margin-left: 0; }
    .btn { padding: 0.85rem 1.6rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-orbit-item { display: none; }
    .paquete-options { grid-template-columns: 1fr; }
    .testimonios-grid { grid-template-columns: 1fr; }
    .hero-tag { font-size: 0.7rem; padding: 0.4rem 0.9rem; }
    .marquee-item { font-size: 1.4rem; }
    .marquee-track { gap: 2.5rem; }
}

/* ═════════════ PRINT ═════════════ */
@media print {
    .navbar, .wa-float, footer, .scroll-progress, .cursor-dot, .cursor-ring { display: none !important; }
    body { background: white; color: black; cursor: auto; }
    body::before, body::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM 2.0 — Refinamiento cinematográfico (overhaul jun 2026)
   Negro en capas · ritmo vertical compacto · contraste · pulido Apple
═══════════════════════════════════════════════════════════════ */
:root {
    --black: #050507;
    --bg-deep: #020203;
    --card: #131318;
    --card-2: #1b1b22;
    --text: #f5f5f7;
    --muted: #9b9ba6;            /* más claro = más contraste/legible */
    --radius: 16px;
    --radius-sm: 10px;
    --hair: rgba(255,255,255,0.08);
    --shadow-deep: 0 26px 70px rgba(0,0,0,0.6), 0 2px 10px rgba(0,0,0,0.4);
}

/* Escala tipográfica fluida según el ancho de pantalla:
   ~16px en laptop, hasta ~18.5px en monitores grandes, ~15px en móvil.
   Esto arregla a la vez "muy alargado" (pantalla chica) y "muy pequeño" (pantalla grande). */
html { font-size: clamp(15px, 0.32vw + 12px, 18.5px); }

/* Fondo con profundidad real (no más negro plano) */
body { background: var(--bg-deep); }
body::before {
    background:
        radial-gradient(1100px 560px at 10% -8%, rgba(201,168,76,0.13), transparent 60%),
        radial-gradient(900px 680px at 98% 108%, rgba(201,168,76,0.07), transparent 55%),
        linear-gradient(180deg, #0c0c12 0%, #070709 48%, #020203 100%) !important;
}

/* Ritmo vertical compacto y fluido → arregla "muy alargado" */
section { padding: clamp(3.25rem, 6.5vw, 6rem) 0; }
.container { padding: 0 clamp(1.15rem, 4vw, 2rem); }

/* Tipografía fluida donde faltaba */
.hero-sub { font-size: clamp(1rem, 0.6vw + 0.8rem, 1.18rem); }
.section-head h2, section h2 { font-size: clamp(1.85rem, 4.2vw, 3.1rem); }
.section-head .lead, .lead { font-size: clamp(0.98rem, 1.2vw, 1.12rem); }
.hero-meta-item .num { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* Tarjetas: radio + hairline + elevación al hover (Apple-like) */
.card, .paquete, .pilar, .evento-card, .extra-card, .stat-card,
.testimonio, .cotizador-wrap, .pago-card, .mi-paquete, .chat-container {
    border-radius: var(--radius);
    border: 1px solid var(--hair);
    background-image: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0) 42%);
    background-color: var(--card);
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.card:hover, .pilar:hover, .evento-card:hover, .extra-card:hover, .paquete:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-deep);
}

/* Botones: radio moderno, glow dorado y micro-press estilo Apple */
.btn { border-radius: 12px; transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast); }
.btn:active { transform: scale(0.97); }
.btn-primary { box-shadow: 0 8px 30px rgba(201,168,76,0.28); }
.btn-primary:hover { box-shadow: 0 14px 44px rgba(201,168,76,0.42); transform: translateY(-2px); }
.btn-outline:hover { transform: translateY(-2px); }

/* Inputs más definidos */
input, select, textarea { border-radius: var(--radius-sm); }

/* Navbar un poco más fina y con mejor profundidad */
.navbar { padding: 1.05rem 0; }

/* ─────── ENTRADA ESPECTACULAR DEL LOGO (hero) ─────── */
.hero-logo-img {
    animation: heroLogoIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) both,
               heroFloat 6s ease-in-out 1.5s infinite !important;
    filter: drop-shadow(0 24px 60px rgba(201,168,76,0.45)) drop-shadow(0 0 40px rgba(201,168,76,0.25));
}
@keyframes heroLogoIn {
    0%   { opacity: 0; transform: scale(0.35) rotate(-35deg); filter: blur(24px); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}
/* Halo dorado pulsante detrás del logo */
.hero-frame::after { z-index: 0; }
.hero-logo-img { position: relative; z-index: 2; }

/* ─────── PORTAFOLIO · TRABAJOS RECIENTES (bento Apple) ─────── */
#trabajos { position: relative; }
.trabajos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
    margin-top: 2.5rem;
}
.trabajo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--hair);
    background: #0c0c11;
    cursor: pointer;
}
.trabajo-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.trabajo-item:nth-child(4) { grid-column: span 2; }
.trabajo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: saturate(0.92) contrast(1.02);
}
.trabajo-item:hover img { transform: scale(1.09); filter: saturate(1.1) contrast(1.05); }
.trabajo-item::after {
    content: '';
    position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(201,168,76,0);
    transition: box-shadow 0.4s;
    pointer-events: none;
}
.trabajo-item:hover::after { box-shadow: inset 0 0 0 2px var(--line-strong); }
.trabajo-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; padding: 1.2rem;
    background: linear-gradient(180deg, transparent 45%, rgba(2,2,3,0.8));
    opacity: 0; transition: opacity 0.4s;
}
.trabajo-item:hover .trabajo-overlay { opacity: 1; }
.trabajo-tag {
    font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.25em;
    color: var(--gold); font-size: 0.95rem;
}
.trabajo-placeholder { background: linear-gradient(135deg, #0e0e15, #16161e); }
.trabajo-placeholder .trabajo-overlay { opacity: 1; align-items: center; justify-content: center; background: none; }
.trabajo-placeholder .trabajo-tag { color: var(--muted); }
/* Video dentro del bento de portafolio */
.trabajo-item.is-video { cursor: pointer; display: block; }
.trabajo-ph-video { width: 100%; height: 100%; background: linear-gradient(135deg, #11131c, #1a1d2b); }
.trabajo-play { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; }
.trabajo-play svg { width: 60px; height: 60px; color: #fff; opacity: 0.92; filter: drop-shadow(0 6px 22px rgba(0,0,0,0.65)); transition: transform 0.35s, color 0.35s; }
.trabajo-item.is-video:hover .trabajo-play svg { transform: scale(1.14); color: var(--gold); }
.trabajo-item.is-video .trabajo-overlay { opacity: 1; background: linear-gradient(180deg, transparent 55%, rgba(2,2,3,0.72)); }
@media (max-width: 820px) {
    .trabajos-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .trabajo-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .trabajo-item:nth-child(4) { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════
   PALETA AZUL-NOCHE + ORO (matchea el logo) · REVELADO CINEMATOGRÁFICO
═══════════════════════════════════════════════════════════════ */
:root {
    --black: #06080f;
    --bg-deep: #04060c;
    --dark: #080b14;
    --card: #10131d;
    --card-2: #161a26;
    --hair: rgba(150,180,230,0.10);          /* hairline con tinte azul */
    --line: rgba(201,168,76,0.16);
}
body { background: var(--bg-deep); }
body::before {
    background:
        radial-gradient(1100px 560px at 8% -10%, rgba(201,168,76,0.14), transparent 60%),
        radial-gradient(1000px 720px at 100% 8%, rgba(60,110,200,0.12), transparent 58%),
        radial-gradient(900px 700px at 95% 110%, rgba(201,168,76,0.08), transparent 55%),
        linear-gradient(180deg, #0b1020 0%, #070b16 45%, #04060c 100%) !important;
}

/* Revelado CINEMATOGRÁFICO (CSS puro, garantizado — desenfoque + escala) */
[data-reveal] {
    opacity: 0;
    transform: translateY(48px) scale(0.965);
    filter: blur(10px);
    transition: opacity 1.05s cubic-bezier(0.16,1,0.3,1),
                transform 1.05s cubic-bezier(0.16,1,0.3,1),
                filter 1.05s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform, filter;
}
[data-reveal].visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
[data-reveal="left"]  { transform: translateX(-60px) scale(0.97); }
[data-reveal="right"] { transform: translateX(60px) scale(0.97); }
[data-reveal="zoom"]  { transform: scale(0.9); }
[data-reveal="left"].visible,
[data-reveal="right"].visible,
[data-reveal="zoom"].visible { transform: none; }
/* anular el viejo override de Motion (ya no se usa) */
body.motion-on [data-reveal] { transition: opacity 1.05s cubic-bezier(0.16,1,0.3,1), transform 1.05s cubic-bezier(0.16,1,0.3,1), filter 1.05s cubic-bezier(0.16,1,0.3,1); }

/* ─────── VIDEO DESTACADO (showreel) ─────── */
.showreel { position: relative; }
.showreel-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin-top: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background: #000;
    box-shadow: 0 50px 120px rgba(0,0,0,0.65), 0 0 70px rgba(201,168,76,0.18);
}
.showreel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.showreel-frame::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 200% 100%;
    animation: shimmer 3.5s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ASISTENTE GUIADO (cliente) — cámara de cine, conversacional
═══════════════════════════════════════════════════════════════ */
.asis { position: fixed; left: 24px; bottom: 24px; z-index: 1200; cursor: auto; }
.asis-launch {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold-grad); background-size: 200% auto;
    color: #1a1206; border: none; cursor: pointer;
    padding: 0.85rem 1.3rem 0.85rem 0.95rem; border-radius: 999px;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.92rem;
    box-shadow: 0 14px 40px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.5);
    animation: asisPulse 2.6s ease-in-out infinite, shimmer 5s linear infinite;
    transition: transform 0.25s, box-shadow 0.25s;
}
.asis-launch:hover { transform: translateY(-3px) scale(1.03); }
.asis-launch.hidden { display: none; }
.asis-launch-ic { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(26,18,6,0.18); border-radius: 50%; }
.asis-launch-ic svg { width: 20px; height: 20px; }
@keyframes asisPulse {
    0%, 100% { box-shadow: 0 14px 40px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.45); }
    50%      { box-shadow: 0 14px 40px rgba(201,168,76,0.4), 0 0 0 16px rgba(201,168,76,0); }
}
.asis-panel {
    position: absolute; left: 0; bottom: 0;
    width: min(380px, calc(100vw - 36px));
    height: min(560px, calc(100vh - 100px));
    background: linear-gradient(180deg, #0d1322, #080b14);
    border: 1px solid var(--line-strong);
    border-radius: 22px; overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    opacity: 0; transform: translateY(20px) scale(0.96); transform-origin: left bottom;
    pointer-events: none; transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.asis-panel.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.asis-head {
    display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.16), rgba(60,110,200,0.1));
    border-bottom: 1px solid var(--hair);
}
.asis-head-ic { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; color: var(--gold); background: rgba(201,168,76,0.12); border: 1px solid var(--line-strong); border-radius: 50%; }
.asis-head-ic svg { width: 24px; height: 24px; }
.asis-head-txt { flex: 1; line-height: 1.25; }
.asis-head-txt strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.asis-head-txt small { color: var(--muted); font-size: 0.74rem; }
.asis-close { background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; padding: 0.3rem; }
.asis-close:hover { color: var(--text); }
.asis-body { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.asis-msg { max-width: 88%; padding: 0.7rem 0.95rem; border-radius: 16px; font-size: 0.9rem; line-height: 1.5; animation: asisIn 0.4s cubic-bezier(0.16,1,0.3,1); }
@keyframes asisIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.asis-msg.bot { align-self: flex-start; background: #161c2b; color: var(--text); border-bottom-left-radius: 4px; }
.asis-msg.user { align-self: flex-end; background: var(--gold); color: #1a1206; font-weight: 600; border-bottom-right-radius: 4px; }
.asis-msg.typing { display: flex; gap: 5px; }
.asis-msg.typing span { width: 7px; height: 7px; background: var(--muted); border-radius: 50%; animation: asisDot 1.2s infinite; }
.asis-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.asis-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes asisDot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.asis-quick { padding: 0.8rem 1.1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid var(--hair); max-height: 180px; overflow-y: auto; }
.asis-chip {
    background: rgba(201,168,76,0.08); border: 1px solid var(--line-strong); color: var(--text);
    padding: 0.55rem 0.85rem; border-radius: 999px; font-size: 0.82rem; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.2s;
}
.asis-chip:hover { background: var(--gold); color: #1a1206; transform: translateY(-2px); }
.asis-card { background: linear-gradient(180deg, rgba(201,168,76,0.1), rgba(255,255,255,0)); border: 1px solid var(--line-strong); border-radius: 14px; padding: 1rem; }
.asis-card-tier { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; color: var(--gold); font-size: 0.75rem; }
.asis-card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin: 0.1rem 0 0.4rem; }
.asis-card-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }
.asis-card-price small { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.1em; }
.asis-card-why { font-size: 0.82rem; color: var(--muted); margin: 0.6rem 0; line-height: 1.5; }
.asis-card-cta { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.6rem; }
.asis-btn { display: block; text-align: center; padding: 0.65rem; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: transform 0.2s; }
.asis-btn:hover { transform: translateY(-2px); }
.asis-btn-wa { background: #25d366; color: #053; }
.asis-btn-gold { background: var(--gold); color: #1a1206; }
@media (hover: none) { .asis { cursor: auto; } }
@media (max-width: 520px) {
    .asis { left: 14px; bottom: 14px; }
    .asis-launch-txt { display: none; }
    .asis-launch { padding: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES FINALES — SVG eventos · scroll-snap · video compacto
═══════════════════════════════════════════════════════════════ */

/* Íconos SVG de eventos (reemplazan emojis) */
.evento-icon { font-size: 0 !important; display: inline-flex; }
.evento-icon svg {
    width: 42px; height: 42px; color: var(--gold); stroke: var(--gold);
    filter: drop-shadow(0 4px 12px rgba(201,168,76,0.3));
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.evento-card:hover .evento-icon svg { transform: translateY(-4px) scale(1.08); }

/* Navegación que SALTA a las secciones (no scroll lento con la rueda) */
@media (min-width: 900px) {
    html { scroll-snap-type: y proximity; scroll-padding-top: 80px; }
    .hero, #trabajos, #showreel, #paquetes-home, #eventos-home,
    #sesiones-home, #albumes-home, .cta-big {
        scroll-snap-align: start;
    }
}

/* Video destacado: título compacto + caption, todo visible junto */
.section-head-tight { margin-bottom: 1.2rem; }
.section-head-tight h2 { margin-bottom: 0; }
.showreel { padding-top: clamp(2rem, 4vw, 3.5rem); }
.showreel-cap {
    text-align: center; margin-top: 1rem; color: var(--muted);
    font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em; font-size: 0.85rem;
}

/* Escala más generosa y legible (Cristian: "todo se ve muy pequeño") */
html { font-size: clamp(15.5px, 0.32vw + 12.6px, 19px); }
.hero h1 { font-size: clamp(2.7rem, 6.5vw, 5.3rem); }
/* Etiquetas pequeñas del cotizador, más legibles */
.cotizador-step h3 { font-size: 1.2rem; }
.cotizador-step .step-num { font-size: 1rem; }
.eyebrow { font-size: 0.82rem; }
.tier-name { font-size: 0.95rem !important; }
.tier-sub { font-size: 0.85rem; }
.extra-check { font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════════
   CINTA DE PELÍCULA · carrusel de servicios (film strip)
═══════════════════════════════════════════════════════════════ */
.filmstrip-sec { overflow: hidden; padding: clamp(1.2rem, 3vw, 2.2rem) 0; }
.filmstrip {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    padding: 24px 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 60px rgba(0,0,0,0.6);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
/* Perforaciones (sprocket holes) arriba y abajo */
.filmstrip::before, .filmstrip::after {
    content: '';
    position: absolute; left: 0; right: 0; height: 15px; z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='15'%3E%3Crect x='8' y='2.5' width='16' height='10' rx='2.2' fill='%23ededed'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 32px 15px;
}
.filmstrip::before { top: 4px; }
.filmstrip::after { bottom: 4px; }
.filmstrip-track {
    display: flex; gap: 6px; width: max-content;
    animation: filmroll 30s linear infinite;
}
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
@keyframes filmroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.film-cell {
    position: relative; flex: 0 0 auto;
    width: clamp(190px, 22vw, 270px); aspect-ratio: 3 / 2;
    background: #000; overflow: hidden;
    border: 3px solid #0a0a0a;
}
.film-cell img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.film-cell:hover img { transform: scale(1.09); }
.film-cell-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #14141c, #1d1d28); }
.film-cell-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem 0.85rem 0.6rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    color: var(--gold); font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.14em; font-size: 0.86rem; text-transform: uppercase;
}
/* La cinta SIEMPRE se mueve (aunque el sistema tenga "reducir animaciones") */
.filmstrip-track { animation: filmroll 28s linear infinite !important; }

/* ═══════════════════════════════════════════════════════════════
   PAQUETES "hoja que se abre" · SESIONES · ÁLBUMES
═══════════════════════════════════════════════════════════════ */

/* Paquetes: se despliegan en 3D (como una hoja) al entrar, en cascada */
.paquetes-grid { perspective: 1600px; }
.paquete[data-reveal] {
    transform: translateY(38px) rotateX(-45deg) scale(0.97);
    transform-origin: top center;
    filter: blur(8px);
}
.paquete[data-reveal].visible {
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
}

/* Tarjetas de Sesiones y Álbumes */
.sesiones-grid, .albumes-grid {
    display: grid; gap: 1.1rem; margin-top: 2.2rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.sesion-card, .album-card {
    position: relative; text-align: center; padding: 2rem 1.3rem;
    border: 1px solid var(--hair); border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 45%), var(--card);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}
.sesion-card::after, .album-card::after {
    content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
    background: radial-gradient(420px 220px at 50% -10%, rgba(201,168,76,0.16), transparent 70%);
    transition: opacity 0.4s;
}
.sesion-card:hover, .album-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-deep);
}
.sesion-card:hover::after, .album-card:hover::after { opacity: 1; }
.sesion-ic, .album-ic { display: inline-flex; margin-bottom: 1rem; }
.sesion-ic svg, .album-ic svg {
    width: 46px; height: 46px; color: var(--gold); stroke: var(--gold);
    filter: drop-shadow(0 6px 16px rgba(201,168,76,0.3));
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.sesion-card:hover .sesion-ic svg, .album-card:hover .album-ic svg { transform: translateY(-4px) scale(1.12) rotate(-4deg); }
.sesion-card h4, .album-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.4rem; }
.sesion-card p, .album-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin-bottom: 0.8rem; }
.sesion-price, .album-price { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; color: var(--gold); font-size: 1.2rem; position: relative; }

/* ─────── FOOTER rediseñado (SVG, sin emojis) ─────── */
.site-footer { position: relative; overflow: hidden; }
.footer-glow {
    position: absolute; left: 50%; top: -130px; transform: translateX(-50%);
    width: min(760px, 90%); height: 320px; pointer-events: none; z-index: 0;
    background: radial-gradient(closest-side, rgba(201,168,76,0.13), transparent 75%);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; color: var(--gold); transition: transform 0.3s, background 0.3s, color 0.3s; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { transform: translateY(-3px); }
.footer-contact ul li { display: flex; align-items: center; gap: 0.7rem; }
.footer-contact .fic { display: inline-flex; color: var(--gold); flex-shrink: 0; }
.footer-contact .fic svg { width: 18px; height: 18px; }

/* ─────── MODAL DE PAQUETE · estilo foto Polaroid/Instagram ─────── */
.paquete-modal {
    max-width: 430px; width: 100%;
    background: #fdfdfb; color: #1c1c1c;
    padding: 13px 13px 0; border-radius: 4px; text-align: left;
    box-shadow: 0 50px 110px rgba(0,0,0,0.72);
    transform: perspective(1500px) rotateY(-26deg) translateY(24px) scale(0.9) rotate(-2deg);
    opacity: 0; transform-origin: center;
    transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.modal-bg.show .paquete-modal { transform: perspective(1500px) rotateY(0deg) translateY(0) scale(1) rotate(-1.2deg); opacity: 1; }
.paquete-modal .modal-close {
    position: absolute; top: -13px; right: -13px; z-index: 4;
    width: 34px; height: 34px; border-radius: 50%;
    background: #1c1c1c; color: #fff; border: 2px solid #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4); cursor: pointer; font-size: 0.85rem;
    display: grid; place-items: center;
}
/* La "foto" (parte superior, con el color del paquete) */
.pm-photo {
    position: relative; aspect-ratio: 16 / 10; border-radius: 2px; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.4rem; color: #fff;
    background-color: #14141c; background-size: cover; background-position: center;
}
.pm-photo::after { content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,8,14,0.15) 0%, rgba(6,8,14,0.35) 45%, rgba(6,8,14,0.92) 100%); }
.pm-logo { position: absolute; top: 12px; right: 12px; width: 52px; height: 52px; z-index: 3; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)); }
.pm-photo > *:not(.pm-logo) { position: relative; z-index: 2; }
.pm-tier { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.3em; font-size: 0.8rem; opacity: 0.9; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.pm-name { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2rem); line-height: 1.05; margin: 0.25rem 0 0.5rem; text-shadow: 0 2px 14px rgba(0,0,0,0.8); }
.pm-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold-light); text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.pm-price small { display: block; font-size: 0.58rem; letter-spacing: 0.1em; opacity: 0.9; margin-top: 0.2rem; }
/* La caja blanca de abajo (margen Polaroid) */
.pm-caption { padding: 1rem 0.5rem 1.4rem; }
.pm-hand { font-family: 'Caveat', cursive; font-size: 2rem; color: #1c1c1c; line-height: 1; margin-bottom: 0.7rem; }
.pm-ideal { background: #f3eede; border-left: 3px solid var(--gold-dark); padding: 0.6rem 0.85rem; font-size: 0.85rem; color: #3a3320; margin-bottom: 0.9rem; border-radius: 2px; }
.pm-ideal strong { color: var(--gold-dark); display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.15rem; }
.pm-items { list-style: none; padding: 0 6px 0 0; margin: 0 0 1.1rem; display: grid; gap: 0.45rem; max-height: 190px; overflow-y: auto; }
.pm-items li { position: relative; padding-left: 1.5rem; font-size: 0.86rem; color: #333; line-height: 1.4; }
.pm-items li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 800; }
.pm-cta { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pm-cta .btn { flex: 1 1 150px; justify-content: center; }
.pm-cta .btn-outline { color: #1c1c1c; border-color: #bbb; }
.pm-cta .btn-outline:hover { background: #1c1c1c; color: #fff; border-color: #1c1c1c; }
.pm-items::-webkit-scrollbar { width: 6px; }
.pm-items::-webkit-scrollbar-track { background: #eee; border-radius: 3px; }
.pm-items::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* Scrollbar global bonita (la del navegador, dorada) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #07070d; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dark), var(--gold)); border-radius: 7px; border: 2px solid #07070d; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
html { scrollbar-color: var(--gold) #07070d; scrollbar-width: thin; }

/* ─────── Cotizador: popover "qué incluye" al hover del paquete ─────── */
.paquete-option { position: relative; }
.paq-pop {
    position: absolute; left: 50%; top: calc(100% + 12px); transform: translateX(-50%) translateY(8px);
    width: min(280px, 82vw); z-index: 30; text-align: left;
    background: #0e1320; border: 1px solid var(--line-strong); border-radius: 12px;
    padding: 1rem 1.1rem; box-shadow: var(--shadow-deep);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.paq-pop::before { content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #0e1320; border-left: 1px solid var(--line-strong); border-top: 1px solid var(--line-strong); }
.paquete-option:hover .paq-pop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.paq-pop strong { display: block; color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }
.paq-pop ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.paq-pop li { position: relative; padding-left: 1.3rem; font-size: 0.82rem; color: var(--text); line-height: 1.35; }
.paq-pop li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

/* Toggle del cotizador (con íconos SVG, sin emojis) */
.modo-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; }
.modo-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* El modal nunca exige scroll de página */
.modal-bg { overflow-y: auto; }
.paquete-modal { max-height: 92vh; }

/* ─────── Íconos por ítem (estilo afiche) — paquetes y modal ─────── */
.paquete ul { list-style: none; padding: 0; }
.paquete ul li, .pm-items li { display: flex; align-items: flex-start; gap: 0.6rem; padding-left: 0; }
.paquete ul li::before, .pm-items li::before { content: none !important; display: none !important; }
.pkg-ic { display: inline-flex; flex-shrink: 0; color: var(--gold); margin-top: 1px; }
.pkg-ic svg { width: 17px; height: 17px; }
.pm-items .pkg-ic { color: var(--gold-dark); }

/* Opciones de los <select> legibles (evita blanco sobre blanco) */
select option { background-color: #0e1320; color: #f2f2f2; }
/* Íconos SVG en los extras/servicios del cotizador */
.ex-name { display: flex; align-items: center; gap: 0.5rem; }
.ex-ic { display: inline-flex; flex-shrink: 0; color: var(--gold); }
.ex-ic svg { width: 18px; height: 18px; }

/* Panel "qué incluye el paquete" en el cotizador */
.paq-detalle {
    margin-top: 1.2rem; padding: 1.3rem 1.5rem;
    background: linear-gradient(180deg, rgba(201,168,76,0.07), rgba(255,255,255,0));
    border: 1px solid var(--line-strong); border-radius: 12px;
    animation: pdIn 0.45s cubic-bezier(0.16,1,0.3,1);
}
@keyframes pdIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.pd-head { margin-bottom: 0.9rem; border-bottom: 1px solid var(--line); padding-bottom: 0.7rem; }
.pd-head strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); }
.pd-ideal { display: block; color: var(--gold); font-size: 0.82rem; margin-top: 0.25rem; }
.pd-items { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.55rem 1.3rem; }
.pd-items li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--text); line-height: 1.4; }
.pd-items li::before { content: none; }

/* Banner "Cotizando como [cliente]" cuando ya inició sesión */
.cotiza-como {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
    padding: 0.9rem 1.2rem; margin-bottom: 1.3rem;
    background: rgba(201,168,76,0.08); border: 1px solid var(--line-strong); border-radius: 10px;
    font-size: 0.92rem;
}
.cotiza-como strong { color: var(--gold); }
.cotiza-como a { color: var(--muted); font-size: 0.82rem; }
.cotiza-como a:hover { color: var(--gold); }

/* Sesiones con selector de cantidad de fotos */
.extra-check-foto { flex-wrap: wrap; }
.extra-check-foto .foto-cant {
    flex-basis: 100%; width: 100%; margin-top: 0.6rem;
    background: #0e1320; border: 1px solid var(--line-strong); color: var(--gold);
    border-radius: 8px; padding: 0.55rem 0.75rem; font-size: 0.85rem; cursor: pointer;
}
.extra-check-foto .foto-cant option { background: #0e1320; color: #f2f2f2; }

/* Botones de cada paquete (Reservar + Personalizar) */
.paquete-cta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; }
.paquete-cta .btn { flex: 1 1 130px; justify-content: center; text-align: center; }
