:root {
    /* Brand Colors - Dual Theme (Abyss & Fire) */
    --primary-color: #070c0e; /* Abyss Teal/Charcoal */
    --accent-color: #e05a2b; /* Molten Copper / Ember Naranja */
    --accent-marine: #3ba6b8; /* Deep Ocean Teal */
    --text-accent: #8fa0a4; /* Soft slate blue for subtitles */
    --bg-light: #f3ece0; /* Warm Parchment / Linen */
    --bg-dark: #070c0e; /* Abyss Black */
    --bg-smoky: #111a1d; /* Smoky Charcoal for cards/panels */
    --text-dark: #111a1d; /* Dark text on light background */
    --text-light: #faf7f2; /* Light cream text on dark background */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-accent: 'Italiana', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Layout */
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
    --header-height: 100px;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* ================= AMBIENT BACKGROUND GLOWS ================= */
.ambient-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: transform 1s ease-out;
}

.glow-marine {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-marine) 0%, transparent 70%);
    top: -15vw;
    left: -15vw;
    animation: floatGlowMarine 25s ease-in-out infinite alternate;
}

.glow-ember {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: 30vh;
    right: -10vw;
    animation: floatGlowEmber 30s ease-in-out infinite alternate;
}

@keyframes floatGlowMarine {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 8%) scale(1.1); }
}

@keyframes floatGlowEmber {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-8%, -12%) scale(0.9); }
}

/* Cinematic Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    opacity: 0.03;
    z-index: 9998;
    pointer-events: none;
    animation: grainDrift 8s steps(10) infinite;
}

@keyframes grainDrift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Cinematic Vignette */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(4, 8, 9, 0.4) 100%);
    z-index: 9997;
    pointer-events: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6, .serif {
    font-family: var(--font-heading);
    font-weight: 400;
}

.uppercase-label {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent-color);
    display: inline-block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(7, 12, 14, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.logo img {
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-medium);
}

header.scrolled .logo img {
    height: 50px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 16px 42px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 3px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    border-radius: 2px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(224, 90, 43, 0.2);
    border: 1px solid rgba(224, 90, 43, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 90, 43, 0.35);
    color: var(--white);
    letter-spacing: 4px;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    letter-spacing: 4px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.06);
}

/* ================= HERO SECTION ================= */
#hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to bottom, rgba(7, 12, 14, 0.5) 0%, rgba(7, 12, 14, 0.98) 100%), 
        url('/hero_fish.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenBurns 30s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -0.5%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 960px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(224, 90, 43, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: revealFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -0.02em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-content h1.split-active {
    opacity: 1;
}

.reveal-word-outer {
    margin-right: 0.18em;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.reveal-word-inner {
    display: inline-block;
    transform: translateY(105%);
    animation: revealWordUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealWordUp {
    to {
        transform: translateY(0);
    }
}

.hero-content h1 i {
    font-family: var(--font-heading);
    color: var(--white);
    font-style: italic;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.hero-content h1 i::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-accent);
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: revealFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: revealFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

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

/* ================= ICONS SECTION ================= */
.icons-section {
    background-color: transparent;
    padding: 40px 0;
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(17, 26, 29, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 60px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.icon-item:hover {
    transform: translateY(-4px);
}

.icon-item img {
    height: 40px;
    transition: filter 0.4s ease;
}

.icon-item span {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-body);
}

/* ================= ESPECIALIDADES (Cards) ================= */
.especialidades {
    padding: 120px 0;
    background-color: var(--bg-light);
    position: relative;
    color: var(--text-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89b7a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--primary-color);
    margin: 15px 0;
    font-weight: 300;
    line-height: 1.2;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 20px auto 0;
    width: 200px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.divider::after {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.divider::before {
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 22, 25, 0.04);
    border: 1px solid rgba(11, 22, 25, 0.06);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Diagonal shine sweep on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 80%
    );
    z-index: 10;
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.card:hover::before {
    left: 125%;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 60px rgba(11, 22, 25, 0.1);
    border-color: rgba(224, 90, 43, 0.2);
}

.card-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(7, 12, 14, 0.3));
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.card:hover .card-img-wrapper::after {
    opacity: 0.4;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 15px 0 20px;
    font-weight: 400;
}

.card-content p {
    font-family: var(--font-body);
    color: #5a6669;
    margin-bottom: 35px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* ================= SIN SECRETOS (Split section) ================= */
.sin-secretos {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.sin-secretos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(59, 166, 184, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(224, 90, 43, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-top .shape-fill {
    fill: var(--bg-light);
}

.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.wave-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.wave-divider-bottom .shape-fill {
    fill: var(--bg-light);
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.split-images {
    position: relative;
    height: 520px;
}

.split-images img {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-img-1 {
    width: 65%;
    height: 75%;
    left: 0;
    top: 5%;
    z-index: 1;
}

.split-img-2 {
    width: 55%;
    height: 65%;
    right: 0;
    bottom: 5%;
    z-index: 2;
    transform: rotate(3deg) translateY(0);
}

.split-images:hover .split-img-1 {
    transform: scale(1.02) translateY(-10px);
}

.split-images:hover .split-img-2 {
    transform: scale(1.04) rotate(1deg) translateY(-15px);
    box-shadow: 0 30px 60px rgba(224, 90, 43, 0.15);
}

.split-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 300;
}

.split-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-accent);
    margin-bottom: 35px;
    line-height: 1.8;
}

.bullet-points {
    list-style: none;
    margin-bottom: 45px;
}

.bullet-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: var(--text-light);
}

.bullet-points li i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(224, 90, 43, 0.4);
}

/* ================= REVIEWS ================= */
.reviews-section {
    padding: 130px 0;
    background-color: var(--bg-light);
    text-align: center;
    color: var(--text-dark);
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89b7a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ================= LOCALES ================= */
.locales-section {
    background-color: var(--bg-dark);
    padding: 140px 0 100px;
    position: relative;
    color: var(--white);
}

.locales-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(224, 90, 43, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.locales-section .section-header h2 {
    color: var(--white);
    font-weight: 300;
}

.locales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 70px;
}

.locale-card {
    background: rgba(17, 26, 29, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Animated glowing border on hover */
.locale-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-marine), var(--accent-color));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.locale-card:hover::after {
    opacity: 1;
}

.locale-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(224, 90, 43, 0.12);
}

.locale-map iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.15) opacity(0.75);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.locale-card:hover .locale-map iframe {
    filter: grayscale(0.2) invert(0) contrast(1) opacity(0.95);
}

.locale-info {
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.locale-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.locale-info p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.locale-info p a {
    color: var(--text-accent);
    transition: color 0.3s ease;
}

.locale-info p a:hover {
    color: var(--accent-color);
}

/* ================= CTA FINAL (Parallax) ================= */
.cta-parallax {
    height: 520px;
    background-image: 
        linear-gradient(rgba(7, 12, 14, 0.6), rgba(7, 12, 14, 0.9)), 
        url('/hero_fish.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 90, 43, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-parallax h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin: 20px 0 40px;
    max-width: 850px;
    font-weight: 300;
    line-height: 1.25;
}

.cta-parallax h2 i {
    font-family: var(--font-heading);
    color: var(--white);
    font-style: italic;
}

/* ================= FOOTER ================= */
footer {
    background-color: #040809;
    color: var(--text-accent);
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.footer-logo {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* ================= MENU INTERACTIVO & GALLERY ================= */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(17, 26, 29, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    max-width: fit-content;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.menu-cat-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-cat-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.menu-cat-btn.active {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(224, 90, 43, 0.3);
}

.menu-gallery {
    position: relative;
    min-height: 200px;
}

.gallery-category {
    display: none;
    gap: 30px;
    width: 100%;
}

.gallery-category.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Featured first image - full width hero */
.gallery-category img.menu-img:first-child {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.gallery-category img.menu-img:first-child:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(224, 90, 43, 0.15);
    border-color: rgba(224, 90, 43, 0.3);
}

/* Remaining images in a grid */
.gallery-category img.menu-img:not(:first-child) {
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.gallery-category img.menu-img:not(:first-child):hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(224, 90, 43, 0.12);
    border-color: rgba(224, 90, 43, 0.2);
}

/* Gallery images wrapper for multi-image grid */
.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.gallery-category img,
.gallery-category .gallery-item {
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.gallery-category img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(224, 90, 43, 0.15);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-smoky);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

.gallery-item .item-info {
    padding: 20px;
}

.gallery-item .item-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* PDF embed items */
.gallery-item iframe,
.gallery-item embed,
.gallery-item object {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
}

/* ===== Premium PDF Viewer ===== */
.pdf-viewer-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-smoky);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.pdf-viewer-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(224, 90, 43, 0.15);
    border-color: rgba(224, 90, 43, 0.2);
}

.pdf-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(17, 26, 29, 0.8);
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.pdf-viewer-header:hover {
    background: rgba(17, 26, 29, 1);
}

.pdf-viewer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--white);
}

.pdf-viewer-title i {
    font-size: 1.3rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(224, 90, 43, 0.3);
}

.pdf-viewer-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 8px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    transition: var(--transition-fast);
}

.pdf-viewer-header:hover .pdf-viewer-action {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 90, 43, 0.3);
}

.pdf-iframe-container {
    position: relative;
    width: 100%;
    background: #0b1113;
}

.pdf-iframe-container iframe {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 1000px;
    border: none;
    display: block;
}

.gallery-category.show .pdf-viewer-wrapper + .pdf-viewer-wrapper {
    margin-top: 30px;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 9, 0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    backdrop-filter: blur(15px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: opacity 0.3s;
}

.close-lightbox:hover {
    opacity: 0.7;
}

/* ===== Reviews Grid ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(11, 22, 25, 0.03);
    border: 1px solid rgba(11, 22, 25, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}

.review-card:hover {
    transform: translateY(-4px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 25px 50px rgba(11, 22, 25, 0.08), 0 0 0 1px rgba(224, 90, 43, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-body);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.review-author {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-stars {
    color: #f5a623;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.review-text {
    font-family: var(--font-body);
    color: #5a6669;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ================= ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

@media (max-width: 992px) {
    .split-grid, .locales-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .split-images {
        height: 400px;
        order: 2;
    }
    .split-text {
        order: 1;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .cta-parallax h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(7, 12, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 40px;
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .icons-grid {
        gap: 40px;
        flex-direction: column;
        border-radius: 30px;
        padding: 30px 40px;
    }
    .gallery-category {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .pdf-viewer-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .pdf-viewer-action {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    .pdf-iframe-container iframe {
        height: 50vh;
        min-height: 350px;
    }
}

/* ================= CUSTOM CURSOR (Desktop only) ================= */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    a, button, .btn, .card, .menu-cat-btn, .icon-item, input, textarea, select {
        cursor: none;
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-cursor.active {
    display: block;
}

.custom-cursor.hovering {
    width: 45px;
    height: 45px;
    background-color: rgba(224, 90, 43, 0.1);
    border-color: rgba(224, 90, 43, 0.6);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-dot.active {
    display: block;
}

/* Hide custom cursor on touch/mobile */
@media (hover: none) {
    .custom-cursor, .cursor-dot {
        display: none !important;
    }
}

/* ================= DIVIDER SYMBOL ================= */
.divider-symbol {
    color: var(--accent-color);
    font-size: 0.6rem;
    display: inline-block;
    animation: pulseSymbol 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseSymbol {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ================= SECTION TRANSITIONS ================= */
.especialidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
    z-index: 1;
    pointer-events: none;
}

.especialidades::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--accent-marine), transparent);
    opacity: 0.3;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--accent-marine), transparent);
    opacity: 0.3;
}

/* ================= BOOKING SECTION DARK ADJUSTMENTS ================= */
#booking .divider::before {
    background: linear-gradient(90deg, transparent, rgba(224, 90, 43, 0.5));
}
#booking .divider::after {
    background: linear-gradient(90deg, rgba(224, 90, 43, 0.5), transparent);
}
#booking .divider-symbol {
    color: rgba(224, 90, 43, 0.7);
}

/* ================= RESERVATION WIDGET RESPONSIVENESS ================= */
#reservation-widget-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    width: 100%;
    margin-top: 40px;
}

.res-iframe-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--bg-smoky);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    #reservation-widget-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #reservation-widget-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 20px;
    }
    .res-iframe-container {
        max-width: 480px;
        margin: 0 auto;
    }
    .res-iframe-container iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    #reservation-widget-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .res-iframe-container {
        max-width: 100%;
    }
    .res-iframe-container h3 {
        font-size: 1.5rem !important;
        padding-top: 20px !important;
    }
    .res-iframe-container p {
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
    }
    .res-iframe-container iframe {
        height: 520px;
    }
}

/* ===== Botón flotante de WhatsApp (reservas) ===== */
.whatsapp-float {
    position: fixed;
    /* safe-area: en iPhone con notch/barra de gestos respeta el "home indicator" */
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover,
.whatsapp-float:active {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    color: #fff;
}
/* Estado oculto: lo activa el IntersectionObserver mientras la sección de reservas
   está en pantalla, para que el botón no tape el calendario del widget. */
/* En la sección de reservas el botón se reubica a la izquierda para no tapar
   el calendario del widget, manteniéndose visible como vía de reserva. */
.whatsapp-float.wa-on-booking {
    right: auto;
    left: calc(24px + env(safe-area-inset-left, 0px));
}
/* En escritorio el botón es solo icono (redondo); la etiqueta se oculta. */
.wa-float-label { display: none; }
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; }
}
@media (max-width: 768px) {
    /* En móvil el botón se convierte en píldora: icono + "Reserva rápido" */
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: calc(16px + env(safe-area-inset-right, 0px));
        width: auto;
        height: 52px;
        padding: 0 18px;
        gap: 9px;
        border-radius: 999px;
        font-size: 26px;
        max-width: calc(100vw - 32px);
    }
    .wa-float-label {
        display: inline;
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }
    .whatsapp-float.wa-on-booking {
        left: calc(16px + env(safe-area-inset-left, 0px));
    }
}


/* ============================================================
   MEJORAS MÓVIL — 2026-06 (todo dentro de media queries: NO afecta desktop)
   Objetivo: cero scroll horizontal, hero legible y reservas cómodas
   con el pulgar en iPhone/Android.
   ============================================================ */
@media (max-width: 768px) {
    /* Red de seguridad: nada debe provocar scroll lateral en móvil */
    html, body { overflow-x: hidden; }

    /* Padding lateral proporcional (antes 40px fijo → apretaba en 360px) */
    .container { padding: 0 24px; }

    /* Las esferas decorativas en vw se salían del viewport y creaban overflow invisible */
    .glow-marine, .glow-ember { display: none; }

    /* Mapas de los locales: altura más contenida en móvil */
    .locale-map iframe { height: 220px; }

    /* Tarjetas de locales en una sola columna */
    .locales-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    /* Iconos "El Mar / La Brasa…": menos padding lateral en móvil pequeño */
    .icons-grid { padding: 30px 18px; gap: 28px; }

    /* H1 del hero: permitir un poco más pequeño en 360px para que respire */
    .hero-content h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); line-height: 1.22; }
}


/* ============================================================
   Selector de idioma (header) — i18n ES/EN/IT/FR/DE
   ============================================================ */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lang-current i.fa-globe { font-size: 0.85rem; }
.lang-current:hover { border-color: var(--accent-color); color: var(--accent-color); }
.lang-caret { font-size: 0.58rem; transition: transform 0.25s ease; }
.lang-switcher.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-smoky);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { margin: 0; }
.lang-menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    padding: 9px 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lang-menu button:hover { background: rgba(255, 255, 255, 0.07); color: var(--white); }
.lang-menu button.active { color: var(--accent-color); font-weight: 600; }

/* En el menú móvil (hamburguesa) el dropdown se alinea a la izquierda */
@media (max-width: 992px) {
    .lang-switcher { width: 100%; }
    .lang-menu { right: auto; left: 0; }
}

/* ============================================================
   COOKIE CONSENT BANNER + PÁGINAS LEGALES (RGPD / LSSI)
   ============================================================ */

/* ---- Banner de consentimiento ---- */
.mab-cc {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 99999;
    padding: 20px;
    display: flex;
    justify-content: center;
    animation: mabCcUp .5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes mabCcUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.mab-cc__inner {
    width: 100%;
    max-width: 720px;
    background: var(--bg-smoky);
    color: var(--text-light);
    border: 1px solid rgba(143, 160, 164, 0.18);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    padding: 26px 28px;
    font-family: var(--font-body);
}
.mab-cc__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--white);
}
.mab-cc__body { font-size: .92rem; line-height: 1.55; color: #cdd6d8; margin: 0; }
.mab-cc__link { color: var(--accent-marine); text-decoration: underline; }
.mab-cc__link:hover { color: var(--accent-color); }

.mab-cc__panel { margin: 18px 0 4px; border-top: 1px solid rgba(143,160,164,.15); }
.mab-cc__cat { padding: 14px 0; border-bottom: 1px solid rgba(143,160,164,.12); }
.mab-cc__cat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mab-cc__cat-name { font-weight: 600; color: var(--white); font-size: .98rem; }
.mab-cc__cat-desc { margin: 6px 0 0; font-size: .82rem; line-height: 1.5; color: #a7b3b6; }
.mab-cc__always { font-size: .78rem; color: var(--accent-marine); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* Interruptor */
.mab-cc__switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.mab-cc__switch input { opacity: 0; width: 0; height: 0; }
.mab-cc__slider { position: absolute; cursor: pointer; inset: 0; background: #3a464a; border-radius: 26px; transition: var(--transition-fast); }
.mab-cc__slider::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--transition-fast); }
.mab-cc__switch input:checked + .mab-cc__slider { background: var(--accent-color); }
.mab-cc__switch input:checked + .mab-cc__slider::before { transform: translateX(20px); }
.mab-cc__switch input:focus-visible + .mab-cc__slider { outline: 2px solid var(--accent-marine); outline-offset: 2px; }

.mab-cc__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.mab-cc__btn {
    flex: 1 1 auto;
    min-width: 140px;
    padding: 13px 22px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}
.mab-cc__btn--primary { background: var(--accent-color); color: #fff; }
.mab-cc__btn--primary:hover { background: #f26a3a; transform: translateY(-2px); }
.mab-cc__btn--ghost { background: transparent; color: var(--text-light); border-color: rgba(143,160,164,.35); }
.mab-cc__btn--ghost:hover { border-color: var(--accent-marine); color: var(--white); }

@media (max-width: 560px) {
    .mab-cc { padding: 0; }
    .mab-cc__inner { border-radius: 16px 16px 0 0; padding: 22px 20px; }
    .mab-cc__btn { flex-basis: 100%; }
}

/* ---- Páginas legales ---- */
.legal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 6vw;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(143,160,164,.12);
}
.legal-logo img { height: 52px; width: auto; }
.legal-lang { display: flex; gap: 4px; }
.legal-lang button {
    background: transparent; border: 1px solid rgba(143,160,164,.25);
    color: var(--text-accent); font-family: var(--font-body); font-size: .74rem; font-weight: 600;
    padding: 6px 10px; border-radius: 20px; cursor: pointer; transition: var(--transition-fast);
}
.legal-lang button:hover { color: var(--white); border-color: var(--accent-marine); }
.legal-lang button.active { background: var(--accent-color); border-color: var(--accent-color); color: #fff; }

.legal-main {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 6vw 80px;
    background: var(--bg-dark);
    min-height: 60vh;
}
.legal-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-accent); font-size: .85rem; font-weight: 600;
    margin-bottom: 28px; transition: var(--transition-fast);
}
.legal-back:hover { color: var(--accent-color); }
.legal-main h1 {
    font-family: var(--font-heading); font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin: 0 0 32px; line-height: 1.1;
}
.legal-content { color: #cdd6d8; font-family: var(--font-body); font-size: .96rem; line-height: 1.7; }
.legal-content h2 {
    font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem;
    color: var(--white); margin: 40px 0 14px;
}
.legal-content h3 { font-weight: 600; font-size: 1.05rem; color: var(--text-light); margin: 26px 0 10px; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 7px; }
.legal-content a { color: var(--accent-marine); text-decoration: underline; }
.legal-content a:hover { color: var(--accent-color); }
.legal-content strong { color: var(--text-light); }
.legal-content .legal-table {
    width: 100%; border-collapse: collapse; margin: 18px 0 26px;
    font-size: .84rem; display: block; overflow-x: auto;
}
.legal-content .legal-table th, .legal-content .legal-table td {
    border: 1px solid rgba(143,160,164,.2); padding: 10px 12px; text-align: left; vertical-align: top;
}
.legal-content .legal-table th { background: var(--bg-smoky); color: var(--white); font-weight: 600; }

.legal-cta { margin-top: 36px; }
.legal-cta-btn {
    background: var(--accent-color); color: #fff; border: none; cursor: pointer;
    font-family: var(--font-body); font-weight: 600; font-size: .9rem;
    padding: 13px 28px; border-radius: 40px; transition: var(--transition-fast);
}
.legal-cta-btn:hover { background: #f26a3a; transform: translateY(-2px); }

.legal-footer {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
    padding: 24px 6vw; background: var(--bg-smoky);
    border-top: 1px solid rgba(143,160,164,.12);
    color: var(--text-accent); font-family: var(--font-body); font-size: .8rem;
}
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer-links a { color: var(--text-accent); transition: var(--transition-fast); }
.legal-footer-links a:hover { color: var(--accent-color); }
