﻿/*
Theme Name:  Me Transfers Premium
Description: Tema ultra moderno para traslados privados y tours de lujo en Barcelona.
Version:     3.0.0
Author:      Merchan.Dev
Text Domain: me-transfers
*/

/* ============================================================
   1. TOKENS / VARIABLES
   ============================================================ */
:root {
    /* Palette */
    --bg-dark: #05173D;
    --bg-card: #003A52;
    --bg-card-hover: #003D56;
    --text-primary: #f8fbff;
    --text-secondary: #9fc2d4;
    --text-muted: rgba(217, 235, 245, 0.38);

    /* Brand */
    --accent-primary: #0077B6;
    --accent-secondary: #004B68;
    --accent-deep: #003D56;
    --accent-dark: #003A52;
    --accent-navy: #05173D;
    --accent-gold: var(--accent-primary);
    --accent-gold-dark: var(--accent-secondary);
    --brand-blue: var(--accent-primary);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #0077B6 0%, #004B68 55%, #003A52 100%);
    --gradient-dark: linear-gradient(180deg, rgba(5, 23, 61, 0) 0%, rgba(5, 23, 61, 1) 100%);

    /* Glass */
    --glass-bg: rgba(5, 23, 61, 0.76);
    --glass-border: 1px solid rgba(173, 214, 233, 0.12);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);

    /* Spacing */
    --section-pad: 7rem;
    --container: 1280px;

    /* Border radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;

    /* Transition */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease);

    /* Typography */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --line-height: 1.6;
}

/* ============================================================
   2. BASIC TYPOGRAPHY & RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: var(--line-height);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 90%;
    max-width: var(--container);
    margin-inline: auto;
}

.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.section-header--compact {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.4);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   6. HEADER — pill flotante glassmorphism
   ============================================================ */
.site-header {
    position: fixed;
    top: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: var(--container);
    z-index: 900;
    background: rgba(5, 23, 61, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    padding: 0 1.5rem;
    transition: top 0.4s var(--ease), width 0.4s var(--ease), border-radius 0.4s var(--ease), background 0.3s;
}

.site-header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(5, 23, 61, 0.95);
    padding: 0 5%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 62px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Branding */
.site-branding {
    flex-shrink: 0;
    min-width: 0;
}

.site-title,
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-title:hover {
    color: var(--accent-gold);
}

/* Desktop Nav — centro */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-navigation .nav-menu,
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.main-navigation li {
    display: flex;
}

.main-navigation li a {
    display: block;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item>a,
.main-navigation li.current_page_item>a {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

/* ── Lado derecho del header ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* CTA botón compact */
.hdr-cta {
    padding: 0.55rem 1.3rem;
    font-size: 0.82rem;
    border-radius: 100px;
}

/* ── Selector de Idioma ── */
.lang-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 148px;
}

.lang-switcher__trigger {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    height: 42px;
    padding: 0.32rem 0.42rem 0.32rem 0.62rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 119, 182, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: #fff;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: none;
}

.lang-switcher__trigger:hover,
.lang-switcher__trigger:focus-visible,
.lang-switcher.is-open .lang-switcher__trigger {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 119, 182, 0.14) 100%);
    border-color: rgba(125, 211, 252, 0.24);
    box-shadow: 0 14px 32px rgba(0, 18, 44, 0.24);
}

.lang-icon {
    color: rgba(182, 231, 255, 0.82);
    flex-shrink: 0;
}

.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    min-width: 0;
    flex: 1;
}

.lang-switcher__current-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.83rem;
    font-weight: 700;
    color: #fff;
}

.lang-switcher__current-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 0.42rem;
    border-radius: 999px;
    background: rgba(0, 61, 86, 0.55);
    border: 1px solid rgba(125, 211, 252, 0.18);
    color: rgba(214, 244, 255, 0.92);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lang-switcher__chevron {
    color: rgba(255, 255, 255, 0.44);
    transition: transform 0.2s var(--ease), color 0.2s ease;
    flex-shrink: 0;
}

.lang-switcher.is-open .lang-switcher__chevron {
    transform: rotate(180deg);
    color: rgba(214, 244, 255, 0.82);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: 240px;
    padding: 0.45rem;
    display: grid;
    gap: 0.22rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(6, 22, 59, 0.97) 0%, rgba(3, 58, 82, 0.98) 100%);
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: 0 28px 64px rgba(0, 8, 23, 0.44);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 980;
}

.lang-switcher.is-open .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 14px;
    padding: 0.78rem 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font: inherit;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lang-switcher__option:hover {
    background: rgba(0, 119, 182, 0.14);
    color: #fff;
    transform: translateX(2px);
}

.lang-switcher__option:focus-visible {
    background: rgba(0, 119, 182, 0.18);
    color: #fff;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.28);
}

.lang-switcher__option.is-active {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 75, 104, 0.28) 100%);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.18);
}

.lang-switcher__option-label {
    font-size: 0.92rem;
    font-weight: 600;
}

.lang-switcher__option-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 24px;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(214, 244, 255, 0.86);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lang-switcher__select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.lang-switcher__native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.lang-switcher__native .goog-te-gadget,
.lang-switcher__native .goog-te-combo {
    font-size: 0 !important;
}

.goog-logo-link,
.lang-switcher__native img {
    display: none !important;
}

/* ============================================================
   7. HAMBURGER BUTTON
   ============================================================ */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.25s;
    transform-origin: center;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   8. MOBILE DRAWER
   ============================================================ */
.mob-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: #0a0a0e;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 950;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mob-menu.open {
    transform: translateX(0);
}

.mob-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 4.5rem 1.5rem 2rem;
    min-height: 100%;
}

.mob-menu-cta {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.mob-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.mob-nav-list a {
    display: block;
    padding: 0.8rem 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.mob-nav-list a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 940;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Ocultar mobile drawer en Desktop */
/* == Ocultar nav desktop en mobile, mostrar burger == */
@media (max-width: 1024px) {
    .main-navigation { display: none !important; }
    .burger          { display: flex !important; }
    .hdr-cta         { display: none !important; }
    .lang-wrapper    { min-width: 0; }
}

/* == Ocultar mobile drawer en Desktop == */
@media (min-width: 1025px) {
    .burger,
    .mob-menu,
    .mob-overlay {
        display: none !important;
    }
}

/* ============================================================
/* ============================================================
   9. HERO SECTION (Video Background - Cinematografico)
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: #040c24;
    overflow: hidden;
}

/* Video: cubre la seccion completamente */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
}

/* Overlay izquierdo suave - solo oscurece el lado del texto */
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(4,12,36,0.78) 0%, rgba(4,12,36,0.35) 40%, rgba(4,12,36,0.05) 70%, transparent 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, transparent 35%, rgba(4,12,36,0.72) 100%);
    z-index: 1;
}

/* Vineta sutil en los bordes */
.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 80px 15px rgba(0,0,0,0.28);
    z-index: 2;
    pointer-events: none;
}

/* Contenedor con el contenido del hero */
.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    min-height: 100svh;
}

.hero-content {
    max-width: 680px;
}

/* Badge animado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0,119,182,0.12);
    border: 1px solid rgba(0,119,182,0.32);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem 0.45rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(12px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c2ff;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0   rgba(0,194,255,0.7); }
    60%  { box-shadow: 0 0 0 8px rgba(0,194,255,0);   }
    100% { box-shadow: 0 0 0 0   rgba(0,194,255,0);   }
}

.hero-title {
    font-size: clamp(3rem, 7.5vw, 7rem) !important;
    line-height: 1.0 !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.70);
    margin-bottom: 2.75rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-btn-main { gap: 0.55rem; padding: 1rem 2rem; font-size: 1rem; }

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    backdrop-filter: blur(14px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.32);
    transform: translateY(-2px);
}

/* Stats strip */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}
.hero-stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,0.14);
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-scroll-line {
    display: block;
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
    animation: scroll-line 1.8s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scroll-line {
    0%   { transform: scaleY(0); opacity: 0; }
    40%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container { padding-top: 110px; padding-bottom: 5rem; justify-content: center; }
    .hero-content   { text-align: center; max-width: 100%; }
    .hero-actions   { justify-content: center; }
    .hero-stats     { justify-content: center; }
    .hero-overlay-dark {
        background: linear-gradient(to bottom, rgba(4,12,36,0.42) 0%, rgba(4,12,36,0.0) 30%, rgba(4,12,36,0.78) 100%);
    }
}
@media (max-width: 480px) {
    .hero-stat-divider { display: none; }
    .hero-stats { gap: 1.2rem; }
}

   9.5 ROAD & TOUR STYLES (Subtle Asphalt Theme)
   ============================================================ */
.section-title {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.road-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: linear-gradient(90deg, #05173D 0%, #003A52 50%, #05173D 100%);
    position: relative;
}

.road-divider::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 119, 182, 0.24) 50%, transparent 100%);
}

.road-top {
    position: relative;
}

.road-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(0, 119, 182, 0.32);
    border-radius: 3px;
}

/* Tour Cards */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.4s;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.tour-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(9, 9, 11, 1) 100%);
}

.tour-content {
    padding: 0 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
}

.tour-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.tour-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tour-link {
    display: inline-block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.25rem;
    align-self: flex-start;
    transition: all 0.3s;
}

.tour-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* ============================================================
   10. SEARCH PLUGIN SECTION
   ============================================================ */
.search-plugin-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-plugin-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

/* ============================================================
   11. SERVICES GRID
   ============================================================ */
.services-section {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 182, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 119, 182, 0.24);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 68px;
    height: 68px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 119, 182, 0.08) 100%);
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.service-icon-image {
    width: 40px;
    height: 40px;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 61, 86, 0.18));
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 119, 182, 0.14) 100%);
    border-color: rgba(125, 211, 252, 0.24);
    box-shadow: 0 18px 32px rgba(0, 18, 44, 0.28);
    transform: translateY(-3px) scale(1.03);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--accent-gold);
}

.service-link svg {
    transition: transform 0.3s var(--ease);
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* ============================================================
   12. BANNER SECTION
   ============================================================ */
.banner-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0a0a10 0%, #16161d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
}

.banner-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

/* ============================================================
   13. GYG REVIEWS SECTION OVERRIDE
   ============================================================ */
.gyg-section {
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--bg-dark) !important;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    padding: 5.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
}

.footer-col--brand .site-title,
.footer-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: rgba(0, 119, 182, 0.12);
    border-color: rgba(0, 119, 182, 0.28);
    color: var(--accent-gold);
}

.social-icon--disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.35rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.footer-contact-list li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--text-secondary);
}

.footer-contact-list a:hover {
    color: var(--text-primary);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--text-secondary);
}

/* ============================================================
   15. WIDGET TITLE (sidebar / footer)
   ============================================================ */
.widget-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ============================================================
   16. PAGE / TOUR PAGES
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 4rem;
    background: var(--bg-dark);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.page-content {
    padding: 5rem 0;
}

.page-content .entry-content {
    max-width: 800px;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-banner {
    padding: 12rem 0 6rem;
    border-bottom: none;
}

.page-banner-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

.page-content-wrapper {
    padding: 4rem 0 8rem;
}

.page-content-shell {
    max-width: 900px;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--glass-shadow);
}

.page-booking-cta {
    margin-top: 4rem;
    text-align: center;
}

.single-related-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.single-category-badge--small {
    font-size: 0.7rem;
}

.single-hero-widget-section {
    padding: 5rem 0;
}

/* ============================================================
   17. ACCESSIBILITY & MISC
   ============================================================ */
.skip-link.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    clip: auto;
    background: var(--accent-gold);
    color: #000;
    border-radius: 6px;
    z-index: 9999;
}

/* ============================================================
   18. RESPONSIVE — 1280px: Large screens
   ============================================================ */
@media (max-width: 1280px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
        gap: 2.5rem;
    }
}

/* ============================================================
   19. RESPONSIVE — 1024px: Tablet landscape
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 5.5rem;
    }

    .main-navigation {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hdr-cta {
        display: none;
    }

    /* Keep lang-wrapper visible on tablet/mobile but hide CTA */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .page-content-shell {
        padding: 3rem;
    }
}

/* ============================================================
   20. RESPONSIVE — 768px: Tablet portrait
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-pad: 4rem;
    }

    .site-header {
        top: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 0.75rem 5%;
    }

    .header-inner {
        height: auto;
        min-height: 56px;
        gap: 0.9rem;
    }

    .site-branding {
        max-width: calc(100% - 130px);
    }

    .site-title {
        font-size: 1.1rem;
    }

    .lang-wrapper {
        min-width: 132px;
    }

    .lang-switcher__trigger {
        height: 40px;
        padding: 0.28rem 0.38rem 0.28rem 0.52rem;
    }

    .lang-switcher__current-name {
        font-size: 0.77rem;
    }

    .lang-switcher__current-code {
        min-width: 26px;
        height: 22px;
        font-size: 0.64rem;
    }

    .hero-section {
        padding-top: 100px;
        min-height: 92svh;
    }

    .hero-single-col {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.6rem, 8vw, 4rem) !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banner-content h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .gyg-review-card,
    .gyg-card {
        width: 240px;
    }

    .page-banner {
        padding: 9rem 0 4.5rem;
    }

    .page-content-wrapper {
        padding: 3rem 0 6rem;
    }

    .page-content-shell {
        padding: 2rem 1.5rem;
    }
}

/* ============================================================
   21. RESPONSIVE — 480px: Mobile phones
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --section-pad: 3.25rem;
    }

    .container {
        width: 94%;
    }

    .site-title {
        font-size: 1rem;
    }

    .lang-wrapper {
        min-width: 58px;
        width: 58px;
    }

    .lang-switcher__trigger {
        justify-content: center;
        padding: 0;
        gap: 0;
    }

    .lang-switcher__current-name,
    .lang-switcher__current-code,
    .lang-switcher__chevron {
        display: none;
    }

    .lang-switcher__menu {
        width: 214px;
        right: -12px;
    }

    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem) !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .search-plugin-wrapper {
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .gyg-review-card,
    .gyg-card {
        width: 220px;
    }

    .banner-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-trust {
        flex-direction: column;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .page-banner-title {
        font-size: clamp(2.3rem, 10vw, 3rem);
    }

    .page-content-shell {
        padding: 1.5rem 1.1rem;
    }

    /* MT Hero Card on mobile */
    .mt-hero-sc-title {
        font-size: 1.3rem;
    }

    .mt-hero-sc-card {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   BLOG SECTION — Front Page Cards
   ============================================================ */
.fp-blog-section {
    position: relative;
}

.fp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card */
.fp-blog-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}

.fp-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,119,182,0.28);
    box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}

/* Imagen */
.fp-blog-card__img-link {
    display: block;
    overflow: hidden;
}

.fp-blog-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fp-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.fp-blog-card:hover .fp-blog-card__img img {
    transform: scale(1.06);
}

.fp-blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #05173D 0%, #003A52 100%);
}

.fp-blog-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,12,36,0.55) 0%, transparent 55%);
    pointer-events: none;
}

/* Cuerpo */
.fp-blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.5rem 1.75rem 1.75rem;
    flex: 1;
}

/* Badge de categoría */
.fp-blog-card__cat {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.fp-blog-card__cat:hover {
    color: #5bcdff;
}

/* Título */
.fp-blog-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

.fp-blog-card__title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.fp-blog-card__title a:hover {
    color: #5bcdff;
}

/* Excerpt */
.fp-blog-card__excerpt {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Meta (fecha + leer más) */
.fp-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}

.fp-blog-card__date {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.fp-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s, color 0.2s;
}

.fp-blog-card__read-more:hover {
    gap: 0.6rem;
    color: #5bcdff;
}

/* CTA ver todos */
.fp-blog-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.fp-blog-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .fp-blog-grid {
        grid-template-columns: 1fr;
    }
    .fp-blog-card__img {
        height: 190px;
    }
}

/* ============================================================
   LOGO DE IMAGEN en el Header
   ============================================================ */
.site-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo-img {
    display: block;
    height: 38px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.site-logo-img:hover {
    opacity: 0.82;
}

/* Logo en el drawer mobile */
.mob-logo {
    padding: 1.5rem 0.9rem 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.mob-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
}

/* Sobrescribir estilos del custom logo de WP para consistencia */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.custom-logo {
    height: 38px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}



/* ============================================================
   GOOGLE TRANSLATE WIDGET — Custom pill design
   ============================================================ */

#google_translate_element {
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Ocultar branding Google */
.goog-te-gadget > span,
.goog-te-gadget > span a,
.goog-logo-link,
.goog-logo-link * {
    display: none !important;
    width: 0 !important;
    overflow: hidden !important;
}

.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
    display: inline-flex !important;
    align-items: center;
    position: relative;
}

/* Icono globo via pseudo-elemento */
.goog-te-gadget::before {
    content: "";
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
}

/* Select pill con ícono de globo a la izq y chevron a la der */
.goog-te-combo {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--font-body), sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.85) !important;
    background:
        rgba(255,255,255,0.06)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
        no-repeat right 0.65rem center !important;
    border: 1px solid rgba(255,255,255,0.13) !important;
    border-radius: 100px !important;
    padding: 0 2.1rem 0 2.35rem !important;
    height: 38px !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s, border-color 0.2s !important;
    min-width: 150px;
}

.goog-te-combo:hover {
    background-color: rgba(255,255,255,0.11) !important;
    border-color: rgba(255,255,255,0.24) !important;
}

.goog-te-combo:focus {
    background-color: rgba(0,119,182,0.14) !important;
    border-color: rgba(0,119,182,0.5) !important;
    box-shadow: 0 0 0 3px rgba(0,119,182,0.15) !important;
}

/* Opciones dark (funciona en Firefox y Edge) */
.goog-te-combo option {
    background: #030d1e !important;
    color: #e4f2ff !important;
    font-size: 0.88rem !important;
    font-family: var(--font-body), sans-serif !important;
    padding: 6px 10px !important;
}

.goog-te-combo option:checked,
.goog-te-combo option:hover {
    background: #00324a !important;
    color: #fff !important;
}

.goog-te-combo option[value=""],
.goog-te-combo option:disabled {
    color: rgba(255,255,255,0.38) !important;
    font-style: italic;
}

/* Ocultar banner sticky de Google */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
}

body,
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}
