/* ==================================================
   MÍRAME 360° - Design System
   Dark Mode First · Royal Blue · Glassmorphism
   Fuentes: Geist, JetBrains Mono, Playfair Display
   ================================================== */

:root {
    --bg: #000000;
    --bg-elevated: #050608;
    --panel: #002366;
    --panel-vibrant: #0047ab;
    --primary: #4169e1;
    --primary-dark: #2c4ca8;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --whatsapp: #25d366;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1.25rem;
    --container: 76.5rem;
    --section-space: 6rem;
    --font-sans: "Geist", Arial, sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --font-serif: "Playfair Display", serif;
    --transition: 220ms ease;
    --glow: 0 0 40px rgba(65, 105, 225, 0.6);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

::-webkit-scrollbar {
    width: 0.65rem;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    max-width: var(--container);
}

.text-primary {
    color: var(--primary) !important;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--primary-dark);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ==================================================
   Ambient Glow Background
   ================================================== */

.ambient-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-glow::before,
.ambient-glow::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.12;
}

.ambient-glow::before {
    top: 20%;
    left: 18%;
    width: 50vw;
    height: 50vw;
}

.ambient-glow::after {
    right: 15%;
    bottom: 10%;
    width: 40vw;
    height: 40vw;
}

/* ==================================================
   Shared Components
   ================================================== */

.section,
.section-full {
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--section-space) 0;
}

.section-heading {
    max-width: 45rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading.text-start {
    margin-right: 0;
    margin-left: 0;
}

.eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-15);
    border-radius: 999px;
}

.eyebrow.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white-20);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1 {
    margin: 0 0 1.4rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    margin-top: 0;
}

.lead-text {
    color: var(--white-70);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    --bs-btn-padding-x: 1.4rem;
    --bs-btn-padding-y: 0.9rem;
    --bs-btn-border-radius: 0.375rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-lg {
    --bs-btn-padding-x: 1.65rem;
    --bs-btn-padding-y: 1rem;
    font-size: 0.85rem;
}

.btn-primary-custom {
    color: var(--white);
    background: var(--panel);
    border-color: var(--panel);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 35, 102, 0.45);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus-visible {
    color: var(--white);
    background: var(--panel-vibrant);
    border-color: var(--panel-vibrant);
    transform: translateY(-0.15rem);
    box-shadow: var(--glow);
}

.btn-outline-custom {
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--white-30);
    backdrop-filter: blur(0.5rem);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus-visible {
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-0.15rem);
    box-shadow: var(--glow);
}

.btn-light-custom {
    color: var(--panel);
    background: var(--white);
    border-color: var(--white);
}

.btn-light-custom:hover,
.btn-light-custom:focus-visible {
    color: var(--primary-dark);
    background: var(--white);
    transform: translateY(-0.15rem);
    box-shadow: 0 1rem 2.5rem rgba(255, 255, 255, 0.18);
}

.icon-box {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.35rem;
    color: var(--primary);
    font-size: 1.5rem;
    background: rgba(65, 105, 225, 0.12);
    border: 1px solid rgba(65, 105, 225, 0.25);
    border-radius: var(--radius-md);
    place-items: center;
}

.text-link {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(0.25rem);
}

/* Reveal */
/* Solo se ocultan si hay JS disponible (clase .js en <html>). Así, si el
   JavaScript tarda o falla, el contenido nunca queda invisible ("página caída"). */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-js [data-reveal],
noscript [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Respeta la preferencia de reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ==================================================
   Navbar
   ================================================== */

.custom-navbar {
    padding: 1.1rem 0;
    background: rgba(0, 0, 0, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    transition: padding var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.custom-navbar.scrolled {
    padding: 0.65rem 0;
    background: rgba(0, 0, 0, 0.92);
    border-color: var(--white-10);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.6);
}

.brand-logo {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-logo:hover,
.brand-logo:focus-visible {
    color: var(--white);
}

.brand-logo-img {
    display: block;
    height: 4.8rem;
    width: auto;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    color: var(--white);
    font-size: 1.25rem;
    background: var(--panel);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: 0 0 1.4rem rgba(65, 105, 225, 0.5);
    place-items: center;
}

.brand-name {
    display: block;
    line-height: 1;
}

.brand-name strong {
    color: var(--primary);
    font-weight: 700;
}

.navbar-toggler {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--white);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    box-shadow: none;
    place-items: center;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.3);
}

.nav-link {
    position: relative;
    color: var(--white-70);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    box-shadow: 0 0 1rem rgba(65, 105, 225, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* ==================================================
   Hero
   ================================================== */

.hero {
    min-height: 100vh;
    padding-top: 8.5rem;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title .hero-pre {
    margin-bottom: 0.6rem;
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.24em;
}

.hero-title .hero-line {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
}

.hero-title .hero-suffix {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--white-90);
}

.hero-text {
    max-width: 30rem;
    margin-bottom: 2rem;
    color: var(--white-70);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.75rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 34rem;
}

.hero-stats div {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white-15);
    border-radius: var(--radius-md);
    backdrop-filter: blur(0.6rem);
}

.hero-stats strong {
    display: block;
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stats span:last-child {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-50);
}

.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-scroll i {
    display: block;
    margin: 0.4rem auto 0;
    font-size: 1.1rem;
    animation: floatY 2.2s ease-in-out infinite;
}

/* ==================================================
   360° Carousel (Swiper Coverflow)
   ================================================== */

.carousel-section {
    overflow: hidden;
}

.album-swiper {
    width: 100%;
    padding: 2.5rem 0 3rem;
}

/* Slides destacados (home: BODAS · XV · CONTENIDO) */
.album-swiper.featured .swiper-slide {
    width: min(400px, 80vw);
    height: 520px;
}

/* Slides compactos (galerías por cliente) */
.album-swiper.compact .swiper-slide {
    height: 340px;
}

.album-swiper.compact.fotos .swiper-slide {
    width: 360px;
    height: 500px;
}

/* Slides de video en formato vertical (9:16) */
.album-swiper.compact.videos .swiper-slide {
    width: 300px;
    height: 520px;
}

.album-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    background: #050608;
    border: 1px solid var(--white-15);
    border-radius: var(--radius-lg);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.7);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.album-swiper .swiper-slide.swiper-slide-active {
    border-color: var(--primary);
    box-shadow: 0 0 3rem rgba(65, 105, 225, 0.45);
}

.album-swiper .swiper-slide a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.album-swiper img,
.album-swiper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.album-swiper .album-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}

.album-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.album-title {
    margin: 0.35rem 0 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
}

.album-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.35rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--white-20);
    border-radius: 999px;
    backdrop-filter: blur(0.5rem);
}

.album-meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.35rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 35, 102, 0.75);
    border: 1px solid rgba(65, 105, 225, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(0.5rem);
}

/* ==================================================
   Explorador de álbumes (Bodas · XV · Contenido)
   ================================================== */

.album-tabs {
    display: flex;
    gap: 0.9rem;
    padding: 0.35rem 0.25rem 1rem;
    margin: 0 0 2.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.album-tabs::-webkit-scrollbar {
    display: none;
}

.album-tab {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    gap: 0.7rem;
    align-items: center;
    min-width: 13.5rem;
    padding: 0.5rem 0.9rem 0.5rem 0.5rem;
    color: var(--white-70);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.album-tab img {
    width: 3.4rem;
    height: 3.4rem;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 0.2rem);
}

.album-tab:hover {
    color: var(--white);
    border-color: rgba(65, 105, 225, 0.5);
}

.album-tab.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    border-color: transparent;
    box-shadow: var(--glow);
}

.album-item {
    display: none;
}

.album-item.is-active {
    display: block;
}

.album-item-loading {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.album-item-loading .spinner-border {
    color: var(--primary);
}

.album-story {
    max-width: 46rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.album-story h2 {
    font-family: var(--font-serif);
}

.album-tagline {
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.album-description {
    margin-bottom: 1.5rem;
    color: var(--white-70);
    font-size: 1.05rem;
}

.album-story-count {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.4rem 0.95rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-50);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-15);
    border-radius: 999px;
}

.album-story-count i {
    color: var(--primary);
}

.album-item-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.album-btn {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.9rem;
    padding: 0.5rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-40);
    border-radius: 999px;
    backdrop-filter: blur(0.5rem);
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.album-btn:hover {
    color: var(--panel);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 1.5rem rgba(65, 105, 225, 0.5);
}

.swiper-360-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.swiper-360-nav .swiper-button-prev,
.swiper-360-nav .swiper-button-next {
    position: static;
    width: 3rem;
    height: 3rem;
    margin: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white-20);
    border-radius: 50%;
    backdrop-filter: blur(0.5rem);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.swiper-360-nav .swiper-button-prev:hover,
.swiper-360-nav .swiper-button-next:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.swiper-360-nav .swiper-button-prev::after,
.swiper-360-nav .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.swiper-360-nav .swiper-pagination-bullet {
    background: var(--white-40);
    opacity: 1;
}

.swiper-360-nav .swiper-pagination-bullet-active {
    background: var(--primary);
    box-shadow: 0 0 0.6rem rgba(65, 105, 225, 0.8);
}

.carousel-hint {
    margin-top: 1rem;
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ==================================================
   Planes de precios por categoría
   ================================================== */

.plans-section {
    padding-top: 0;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.75rem;
    background: var(--panel);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.plan-card:hover {
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    border-color: transparent;
    box-shadow: var(--glow);
}

.plan-badge {
    position: absolute;
    top: -0.8rem;
    right: 1.25rem;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.35rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 999px;
    box-shadow: var(--glow);
}

.plan-name {
    margin-bottom: 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.plan-tagline {
    margin-bottom: 1.25rem;
    color: var(--white-70);
    font-size: 0.85rem;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--white-10);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-50);
}

.plan-price strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.plan-features {
    flex: 1 1 auto;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.plan-features li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.35rem 0;
    color: var(--white-70);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-features li i {
    margin-top: 0.12rem;
    color: var(--primary);
}

.plan-card .btn {
    margin-top: auto;
}

/* ==================================================
   Instagram embed
   ================================================== */

.instagram-frame {
    max-width: 42rem;
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.7);
}

.instagram-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.instagram-facade {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--panel);
    place-items: center;
}

.instagram-facade-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    color: var(--white-70);
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 206, 52, 0.18), transparent 18rem),
        radial-gradient(circle at 82% 80%, rgba(98, 40, 215, 0.24), transparent 20rem),
        linear-gradient(135deg, var(--panel), var(--panel-vibrant));
}

.insta-avatar {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 2rem;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    border: 2px solid var(--white);
    border-radius: 1.1rem;
    place-items: center;
}

.insta-handle {
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.insta-meta {
    color: var(--white-50);
    font-size: 0.85rem;
}

.instagram-facade-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.instagram-facade-btn i {
    font-size: 1.1rem;
    color: var(--white);
}

.instagram-facade-btn:hover,
.instagram-facade-btn:focus-visible {
    transform: translateY(-0.15rem);
    filter: brightness(1.08);
    box-shadow: 0 0.75rem 2rem rgba(238, 42, 123, 0.4);
}

.instagram-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ==================================================
   Services
   ================================================== */

.services {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 35, 102, 0.06) 100%);
}

.service-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    content: "";
    background: linear-gradient(90deg, var(--panel), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover,
.process-card:hover,
.portfolio-card:hover {
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow: 0 0 2.5rem rgba(65, 105, 225, 0.18);
    transform: translateY(-0.4rem);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3,
.process-card h3 {
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

.service-card p,
.process-card p {
    margin-bottom: 0;
    color: var(--white-70);
    font-size: 0.95rem;
}

.service-badge {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    padding: 0.3rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(65, 105, 225, 0.6);
    border-radius: 999px;
}

/* Beneficio destacado (video 360° base giratoria) */
.service-card.featured-benefit {
    background: linear-gradient(160deg, rgba(0, 35, 102, 0.35), rgba(65, 105, 225, 0.12));
    border-color: rgba(65, 105, 225, 0.55);
    box-shadow: 0 0 2.5rem rgba(65, 105, 225, 0.2);
}

.service-card.featured-benefit::before {
    transform: scaleX(1);
}

.service-card.featured-benefit h3 {
    color: var(--primary);
}

/* ==================================================
   Team (página de equipo)
   ================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-card {
    padding: 1.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(65, 105, 225, 0.55);
    box-shadow: 0 0 2.5rem rgba(65, 105, 225, 0.2);
}

.team-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(0, 35, 102, 0.35), rgba(65, 105, 225, 0.12));
    border-radius: var(--radius-lg);
}

/* Fallback para navegadores sin soporte de aspect-ratio (Safari/iOS < 15). */
@supports not (aspect-ratio: 1 / 1) {
    .team-photo {
        position: relative;
        height: 0;
        padding-top: 100%;
    }
    .team-photo img,
    .team-photo .team-photo-empty {
        position: absolute;
        inset: 0;
    }
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-empty {
    color: var(--white-40);
    font-size: 3rem;
}

.team-name {
    margin: 0 0 0.2rem;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.team-role {
    margin: 0 0 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.team-bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white-70);
}

/* ==================================================
   Planes (página general de planes)
   ================================================== */

.plans-group + .plans-group {
    margin-top: var(--section-space);
}

/* ==================================================
   Benefits
   ================================================== */

.benefit-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
}

.benefit-card {
    display: grid;
    gap: 0.45rem;
    min-height: 9.5rem;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
}

.benefit-card i {
    color: var(--primary);
    font-size: 1.4rem;
}

.benefit-card strong {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.benefit-card span {
    color: var(--white-70);
    font-size: 0.88rem;
}

.benefit-card.featured {
    color: var(--white);
    background: linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    border-color: transparent;
    box-shadow: var(--glow);
}

.benefit-card.featured i,
.benefit-card.featured strong,
.benefit-card.featured span {
    color: var(--white);
}

.benefit-card.wide {
    grid-column: 1 / -1;
    min-height: auto;
}

/* ==================================================
   Process
   ================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-card {
    position: relative;
    isolation: isolate;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    z-index: -1;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(65, 105, 225, 0.18);
}

/* ==================================================
   Event Hero (categorías)
   ================================================== */

.event-hero {
    min-height: 62vh;
    padding-top: 9rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.event-hero .hero-bg img {
    opacity: 0.5;
}

.event-hero h1 {
    font-family: var(--font-serif);
    text-transform: uppercase;
}

.event-hero .event-client {
    margin-top: 1.25rem;
    color: var(--white-70);
    font-size: 1.05rem;
}

.event-hero .event-client strong {
    color: var(--white);
}

/* ==================================================
   CTA
   ================================================== */

.cta-panel {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: var(--white-70);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.16), transparent 18rem),
        linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--glow);
}

.cta-panel h2 {
    max-width: 47rem;
    color: var(--white);
}

.cta-panel p {
    max-width: 40rem;
    margin-bottom: 0;
}

.cta-panel .btn {
    flex: 0 0 auto;
}

/* ==================================================
   Contact
   ================================================== */

.contact {
    background: radial-gradient(circle at 8% 16%, rgba(65, 105, 225, 0.08), transparent 20rem);
}

.contact-form,
.contact-info {
    height: 100%;
    padding: clamp(1.35rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
}

.contact-whatsapp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    min-height: 22rem;
    padding: clamp(2rem, 4vw, 3.5rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(65, 105, 225, 0.22), transparent 16rem),
        linear-gradient(160deg, #002366 0%, #00308a 55%, #0047ab 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 35, 102, 0.55);
}

.contact-whatsapp::before {
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 14rem;
    height: 14rem;
    content: "";
    background: rgba(65, 105, 225, 0.35);
    border-radius: 50%;
    filter: blur(3rem);
}

.contact-whatsapp-icon {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 2.4rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-md);
    backdrop-filter: blur(0.5rem);
    place-items: center;
}

.contact-whatsapp h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-whatsapp p {
    position: relative;
    z-index: 1;
    max-width: 30rem;
    margin-bottom: 1.75rem;
    color: var(--white-70);
}

.btn-whatsapp {
    color: var(--panel);
    background: var(--white);
    border-color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    color: var(--white);
    background: var(--panel-vibrant);
    border-color: var(--panel-vibrant);
    transform: translateY(-0.15rem);
    box-shadow: var(--glow);
}

.contact-whatsapp-note {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-50);
}

.form-control {
    min-height: 3.55rem;
    padding: 0.9rem 1rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    box-shadow: none;
}

textarea.form-control {
    min-height: 10rem;
    resize: vertical;
}

.form-control::placeholder {
    color: var(--white-40);
}

.form-control:focus {
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.18);
}

.form-alert {
    margin-top: 1rem;
}

.contact-info {
    background: linear-gradient(180deg, var(--panel), #001b52);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 1.5rem 3rem rgba(0, 35, 102, 0.55);
}

.contact-info h3 {
    color: var(--white);
}

.contact-info p {
    color: var(--white-70);
}

.contact-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 1.75rem 0 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--white-15);
    border-radius: var(--radius-md);
}

.contact-list i {
    display: grid;
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.7rem;
    place-items: center;
}

.contact-list span {
    display: block;
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
    color: var(--white);
    font-weight: 700;
}

/* ==================================================
   Footer and Floating WhatsApp
   ================================================== */

.footer {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
    color: var(--white-70);
    background: #030406;
    border-top: 1px solid var(--white-10);
}

.footer-logo {
    margin-bottom: 1.2rem;
    color: var(--white);
    display: flex;
    justify-content: flex-start;
}

.footer-logo .brand-logo-img {
    height: 8rem;
}

.footer-logo:hover {
    color: var(--white);
}

.footer p {
    max-width: 26rem;
    color: var(--white-50);
}

.footer h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer ul {
    display: grid;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer a {
    color: var(--white-70);
    transition: color var(--transition);
}

.footer a i {
    margin-right: 0.55rem;
    color: var(--white-40);
    transition: color var(--transition);
}

.footer li > i {
    margin-right: 0.55rem;
    color: var(--white-40);
}

.footer a:hover i,
.footer a:focus-visible i {
    color: var(--primary);
}

.footer a:hover,
.footer a:focus-visible {
    color: var(--primary);
}

.footer ul.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.footer-social li a {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--white-15);
    border-radius: 50%;
    color: var(--white-70);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social li a i {
    margin: 0;
    color: inherit;
}

.footer-social li a:hover,
.footer-social li a:focus-visible {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(65, 105, 225, 0.18);
}

.footer-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.6rem;
    margin-top: 3rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--white-40);
    border-top: 1px solid var(--white-10);
}

.footer-signature {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--white-40);
    border-top: 1px solid var(--white-10);
}

.footer-signature a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition), text-shadow var(--transition);
}

.footer-signature a:hover,
.footer-signature a:focus-visible {
    color: var(--white);
    text-shadow: 0 0 0.8rem rgba(65, 105, 225, 0.6);
}

.whatsapp-button {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1040;
    display: grid;
    width: 3.75rem;
    height: 3.75rem;
    color: var(--white);
    font-size: 1.6rem;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 1rem 2.5rem rgba(37, 211, 102, 0.36);
    transition: transform var(--transition), box-shadow var(--transition);
    place-items: center;
    animation: pulseWhatsApp 2.8s ease infinite;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    color: var(--white);
    transform: translateY(-0.2rem) scale(1.04);
    box-shadow: 0 1.4rem 3rem rgba(37, 211, 102, 0.45);
}

/* ==================================================
   Localizaciones
   ================================================== */

.venue-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.venue-card:hover {
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow: 0 0 2.5rem rgba(65, 105, 225, 0.18);
    transform: translateY(-0.4rem);
}

.venue-media {
    position: relative;
    height: 15rem;
    overflow: hidden;
}

.venue-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.venue-card:hover .venue-media img {
    transform: scale(1.05);
}

.venue-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 55%);
}

.venue-badge {
    position: absolute;
    bottom: 0.9rem;
    left: 1rem;
    z-index: 1;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.35rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--white-20);
    border-radius: 999px;
    backdrop-filter: blur(0.5rem);
}

.venue-body {
    padding: 1.5rem;
}

.venue-body h3 {
    margin-bottom: 0.15rem;
    font-family: var(--font-serif);
}

.venue-sub {
    margin-bottom: 0.9rem;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.venue-desc {
    margin-bottom: 1.1rem;
    color: var(--white-70);
    font-size: 0.95rem;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0 0 1.4rem;
    list-style: none;
}

.venue-tags li {
    padding: 0.3rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.35);
    border-radius: 999px;
}

/* Mapa */
.map-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 35, 102, 0.06) 100%);
}

.map-frame {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
}

#venue-map {
    height: 30rem;
    z-index: 0;
    background: #050608;
    border-radius: calc(var(--radius-lg) - 0.25rem);
}

.map-note {
    margin-top: 1.25rem;
    color: var(--white-50);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.map-note i {
    color: var(--primary);
}

/* Marcador personalizado de Leaflet */
.venue-pin-wrap {
    background: transparent;
    border: none;
}

.venue-pin {
    display: grid;
    width: 2.1rem;
    height: 2.1rem;
    color: var(--white);
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--panel), var(--panel-vibrant));
    border: 2px solid var(--white);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 0 1.4rem rgba(65, 105, 225, 0.65);
    transform: rotate(-45deg);
    place-items: center;
}

.venue-pin i {
    transform: rotate(45deg);
}

.leaflet-popup-content-wrapper {
    color: var(--white);
    background: #0a0f1a;
    border: 1px solid rgba(65, 105, 225, 0.5);
    border-radius: 0.6rem;
    box-shadow: 0 0 1.5rem rgba(65, 105, 225, 0.3);
}

.leaflet-popup-content {
    margin: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.4;
}

.leaflet-popup-content strong {
    font-family: var(--font-serif);
    color: var(--white);
}

.leaflet-popup-content a {
    color: var(--primary);
    font-weight: 700;
}

.leaflet-popup-tip {
    background: #0a0f1a;
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--white-50);
}

/* ==================================================
   Animations
   ================================================== */

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.9rem);
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.34);
    }

    70% {
        box-shadow: 0 0 0 1rem rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ==================================================
   Ajustes de gestión (panel público + footer)
   ================================================== */
.album-location {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(65, 105, 225, 0.08);
    border: 1px solid rgba(65, 105, 225, 0.25);
    border-radius: 2rem;
}
