/* =====================================================
   BAJA RENT CARS & TRUCKS - Main Stylesheet v2.0
   UI/UX Pro Max · Aurora UI · Glassmorphism · Mobile-First
   Design System: Premium Car Rental · Baja California Sur
   ===================================================== */

/* ---------- Google Fonts — Brand Board Baja Rent Luxury ---------- */
/* Cooper STD Black → Playfair Display (luxury serif heading) */
/* Brush Script MT Italic → Dancing Script (accent/script)   */
/* Body → DM Sans (clean modern)                              */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=Dancing+Script:wght@600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ---------- Design Tokens / CSS Variables ---------- */
:root {
  /* ── Brand Colors · Baja Rent Luxury Brand Board ────────── */
  /* Primarios */
  --brc-navy:      #003f70;   /* Azul Oscuro  P 108-8 C */
  --brc-sand:      #9f977a;   /* Arena        P 13-6 C  */
  /* Secundarios */
  --brc-smoke:     #5C5D60;   /* Gris Humo    P 179-12 C */
  --brc-sand-light:#cec5ae;   /* Arena Claro  P 7-8 C   */
  --brc-gold:      #FFCF01;   /* Dorado/CTA   P 7-8 C   */
  --brc-blue-light:#4a86cb;   /* Azul Claro   P 106-6 C */
  /* Utilidades */
  --brc-white:     #FFFFFF;
  --brc-gray-bg:   #F7F5F1;   /* fondo cálido derivado de arena */
  --brc-dark:      #001e38;   /* versión más oscura del azul marca */

  /* ── Aliases de compatibilidad (PHP templates no rompen) ── */
  --brc-navy-2:    #003f70;
  --brc-blue:      #003f70;
  --brc-blue-2:    #4a86cb;
  --brc-teal:      #4a86cb;
  --brc-teal-2:    #6fa3d8;
  --brc-gray:      #5C5D60;
  --brc-gray-2:    #9f977a;
  --brc-light:     #EAE7DF;
  --brc-orange:    #FFCF01;
  --brc-orange-2:  #e6b800;
  --brc-green:     #2e7d32;

  /* ── Aurora / Gradients ────────────────────────────────── */
  --aurora-hero: linear-gradient(135deg, rgba(0,31,56,.97) 0%, rgba(0,63,112,.88) 55%, rgba(74,134,203,.50) 100%);
  --grad-gold:   linear-gradient(135deg, #FFCF01 0%, #e6b800 100%);
  --grad-blue:   linear-gradient(135deg, #003f70 0%, #4a86cb 100%);
  --grad-sand:   linear-gradient(135deg, #cec5ae 0%, #9f977a 100%);

  /* ── Glassmorphism ─────────────────────────────────────── */
  --glass-bg:      rgba(255,255,255,.10);
  --glass-bg-card: rgba(255,255,255,.07);
  --glass-border:  rgba(255,255,255,.18);
  --glass-blur:    blur(16px);

  /* ── Shadows ───────────────────────────────────────────── */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
  --shadow-xl:     0 16px 60px rgba(0,0,0,.20);
  --shadow-teal:   0 8px 32px rgba(74,134,203,.30);
  --shadow-blue:   0 8px 32px rgba(0,63,112,.35);
  --shadow-orange: 0 6px 24px rgba(255,207,1,.45);
  --shadow-sand:   0 6px 24px rgba(159,151,122,.30);

  /* ── Border Radii ──────────────────────────────────────── */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* ── Typography · Brand Board ──────────────────────────── */
  /* Cooper STD Black  → Playfair Display (luxury serif)     */
  /* Brush Script MT   → Dancing Script  (decorative accent) */
  /* Body              → DM Sans         (clean modern)      */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent:  'Dancing Script', cursive;
  --font-body:    'DM Sans', 'Poppins', sans-serif;

  /* ── Easing ────────────────────────────────────────────── */
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0.0, 1, 1);
  --ease-inout: cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition:      .28s var(--ease-out);
  --transition-slow: .5s  var(--ease-out);

  /* ── Legacy aliases ────────────────────────────────────── */
  --brc-shadow:    var(--shadow-md);
  --brc-shadow-lg: var(--shadow-lg);
  --brc-radius:    var(--radius-md);
  --brc-radius-sm: var(--radius-sm);
  --brc-font:      var(--font-body);
  --brc-transition: var(--transition);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--brc-dark);
  background: var(--brc-white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p { line-height: 1.7; }

.section-padding { padding: 96px 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--brc-teal); border-radius: 3px; }

/* Focus rings (accessibility) */
*:focus-visible {
  outline: 2px solid var(--brc-teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =====================================================
   AURORA MESH HELPER
   ===================================================== */
.aurora-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 30%, rgba(74,134,203,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(0,63,112,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(255,207,1,.06) 0%, transparent 50%);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.brc-navbar {
  background: transparent;
  padding: 20px 0;
  transition: all .4s var(--ease-out);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
}

.brc-navbar.scrolled {
  background: rgba(10,22,40,.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.06);
}

.navbar-brand-text { line-height: 1.1; }
.brand-baja  { font-size: 1.5rem; font-weight: 800; color: var(--brc-gold); letter-spacing: 2px; }
.brand-rent  { font-size: 1.5rem; font-weight: 800; color: #fff; }
.brand-small { font-size: .58rem; letter-spacing: 3.5px; color: rgba(255,255,255,.6); font-weight: 400; text-transform: uppercase; }

.brc-navbar .navbar-brand {
  padding: 0;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
}
.brc-navbar .navbar-brand:focus-visible {
  outline: 2px solid var(--brc-teal) !important;
  outline-offset: 4px;
  border-radius: 4px;
}

.navbar-logo {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block;
  flex-shrink: 0;
}

.brc-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .875rem;
  padding: .5rem .85rem !important;
  position: relative;
  letter-spacing: .01em;
  transition: color .2s;
}
.brc-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brc-gold), #ffe566);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease-out);
}
.brc-navbar .nav-link:hover::after,
.brc-navbar .nav-link.active::after { transform: scaleX(1); }
.brc-navbar .nav-link:hover { color: #fff !important; }

/* Lang selector */
.lang-selector { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn:hover, .lang-btn.active { color: #fff; background: rgba(255,255,255,.14); }
.lang-divider { color: rgba(255,255,255,.25); }

/* Navbar buttons */
.btn-whatsapp-nav {
  background: #25D366;
  color: #fff !important;
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-whatsapp-nav:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--brc-orange), var(--brc-orange-2));
  color: #fff !important;
  border-radius: var(--radius-full);
  padding: 7px 20px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* =====================================================
   HERO
   ===================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brc-navy);
}

/* Aurora animated mesh */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 10% 50%, rgba(74,134,203,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(0,63,112,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(255,207,1,.08) 0%, transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes auroraShift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: .8; transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&q=80') center/cover no-repeat;
  opacity: .12;
  z-index: 0;
}

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

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,207,1,.10) 0%, transparent 70%);  /* gold glow */
  top: -100px; right: -150px;
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,134,203,.12) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-24px) rotate(5deg); }
}

/* Hero badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.hero-badge:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}
.hero-badge i { color: var(--brc-gold); font-size: .85rem; }

/* Hero title — Playfair Display (Cooper STD Black web substitute) */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--brc-gold), #ffe566);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.80);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.75;
}

/* Hero CTA — Dorado para el botón principal (gold = luxury CTA) */
.btn-hero-primary {
  background: var(--grad-gold);
  color: var(--brc-navy);
  border-radius: var(--radius-full);
  padding: 15px 32px;
  font-weight: 800;
  font-size: .95rem;
  border: none;
  box-shadow: 0 6px 28px rgba(255,207,1,.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,207,1,.65); color: var(--brc-navy); }

.btn-hero-secondary {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.30);
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.5); color: #fff; transform: translateY(-2px); }

.btn-hero-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-whatsapp:hover { background: #1DA851; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); color: #fff; }

/* Hero stats */
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}
.stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 400; margin-top: 4px; letter-spacing: .05em; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }

/* Scroll indicator */
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brc-gold);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  80% { opacity: 1; }
}

/* =====================================================
   GLOBAL SECTION HELPERS
   ===================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brc-sand-light);
  color: var(--brc-navy);
  font-family: var(--font-accent);          /* Dancing Script */
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-tag-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,207,1,.18);
  color: var(--brc-gold);
  font-family: var(--font-accent);          /* Dancing Script */
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.section-title {
  font-family: var(--font-heading);         /* Playfair Display */
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--brc-navy);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
  line-height: 1.18;
}
.section-title-sm {
  font-family: var(--font-heading);         /* Playfair Display */
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brc-navy);
  letter-spacing: -.01em;
}
.section-subtitle  { font-size: 1rem; color: var(--brc-gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* =====================================================
   RENTAL FORM
   ===================================================== */
.rental-form-section { margin-top: -72px; position: relative; z-index: 10; padding-bottom: 0; }

.rental-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--brc-gold);
  position: relative;
  overflow: hidden;
}
.rental-form-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,207,1,.08), transparent);
  pointer-events: none;
}

/* Form Controls */
.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brc-navy);
  margin-bottom: 6px;
  display: block;
}

.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #E2E8F0;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--brc-dark);
  background: #FAFBFF;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brc-blue-light);
  box-shadow: 0 0 0 3px rgba(74,134,203,.14);
  background: #fff;
  outline: none;
}
.form-control::placeholder { color: var(--brc-gray-2); }

/* Primary CTA button */
.btn-primary-brc {
  background: linear-gradient(135deg, var(--brc-blue), var(--brc-teal));
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 13px 32px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary-brc:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(21,101,192,.4); color: #fff; }

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits-section { background: var(--brc-white); }

.benefit-card {
  background: var(--brc-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1.5px solid #EEF2FF;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brc-gold), var(--brc-blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(74,134,203,.2); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(74,134,203,.12), rgba(0,63,112,.08));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem; color: var(--brc-navy);
  transition: var(--transition);
  border: 1.5px solid rgba(74,134,203,.18);
}
.benefit-card:hover .benefit-icon {
  background: var(--grad-gold);
  color: var(--brc-navy);
  transform: scale(1.1) rotate(-5deg);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.benefit-title { font-size: 1rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 8px; letter-spacing: -.01em; }
.benefit-desc  { font-size: .875rem; color: var(--brc-gray); margin: 0; line-height: 1.6; }

/* =====================================================
   BRANDS CAROUSEL
   ===================================================== */
.brands-section {
  padding: 48px 0;
  background: var(--brc-gray-bg);
  overflow: hidden;
  border-top: 1px solid #EEF2FF;
  border-bottom: 1px solid #EEF2FF;
}
.brands-title {
  font-size: .8rem;
  color: var(--brc-gray);
  font-weight: 500;
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.brands-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-track { display: flex; gap: 20px; animation: brandsScroll 22s linear infinite; width: max-content; }
.brands-track:hover { animation-play-state: paused; }
@keyframes brandsScroll { to { transform: translateX(-50%); } }

.brand-item {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  min-width: 130px; height: 68px;
  padding: 10px 24px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8EDF3;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover { transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow-md); border-color: rgba(0,151,167,.2); }
.brand-logo { max-height: 40px; max-width: 100px; filter: grayscale(1) opacity(.55); transition: filter .35s; object-fit: contain; }
.brand-item:hover .brand-logo { filter: none; }
.brand-name-text { font-size: .9rem; font-weight: 700; color: var(--brc-navy); }

/* =====================================================
   VEHICLES
   ===================================================== */
.vehicles-section { background: var(--brc-white); }

.vehicle-card {
  background: #fff;
  border-radius: 18px;
  overflow: visible; /* permite badges fuera del borde */
  box-shadow: 0 4px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  border: 1.5px solid #EEF2FF;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column; height: 100%;
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(0,0,0,.14), 0 4px 12px rgba(0,151,167,.08);
  border-color: rgba(0,151,167,.2);
}

/* Imagen — clip-path para mantener bordes redondeados solo en la imagen */
.vehicle-card-img {
  position: relative; overflow: hidden;
  height: 220px; background: var(--brc-gray-bg);
  border-radius: 16px 16px 0 0;
}
.vehicle-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.vehicle-card:hover .vehicle-img { transform: scale(1.08); }

.vehicle-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(10,22,40,.45), transparent);
  pointer-events: none; opacity: 0; transition: opacity .35s;
}
.vehicle-card:hover .vehicle-card-img::after { opacity: 1; }

.vehicle-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--brc-gray-2);
  background: linear-gradient(135deg, #EEF2FF, #E0F2F1);
}

/* Badges — posicionados relativos a .vehicle-card */
.vehicle-badge-featured {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  background: linear-gradient(135deg, var(--brc-orange), var(--brc-orange-2));
  color: #fff; font-size: .72rem; font-weight: 800;
  padding: 5px 13px; border-radius: var(--radius-full);
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255,109,0,.5);
  display: inline-flex; align-items: center; gap: 4px;
}

/* Badge PROMO */
.vehicle-badge-promo {
  position: absolute;
  top: 14px; left: 14px; z-index: 20;
  background: #e53935;
  color: #fff !important;
  font-size: .75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 14px rgba(229,57,53,.65), 0 0 0 2px #fff;
  animation: promoBlink 1.8s ease-in-out infinite;
  white-space: nowrap;
}
.vehicle-badge-promo i {
  color: #fff !important;
  font-size: .8rem;
}
@keyframes promoBlink {
  0%, 100% { box-shadow: 0 3px 14px rgba(229,57,53,.65), 0 0 0 2px #fff; }
  50%       { box-shadow: 0 3px 24px rgba(229,57,53,.9),  0 0 0 2px #fff; transform: scale(1.05); }
}

/* Card body */
.vehicle-card-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.vehicle-category {
  font-size: .7rem; font-weight: 700; color: var(--brc-teal);
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 4px;
}
.vehicle-name {
  font-family: var(--font-heading); font-size: 1.18rem; font-weight: 700;
  color: var(--brc-navy); margin-bottom: 14px; letter-spacing: -.02em;
  line-height: 1.25;
}

/* Specs grid — más legible y visual */
.vehicle-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.spec-item {
  background: #F0F4FF;
  font-size: .74rem; font-weight: 600; color: #334155;
  padding: 5px 11px; border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid rgba(21,101,192,.08);
  transition: background .2s, transform .2s;
}
.spec-item:hover { background: #E0EAFF; transform: translateY(-1px); }
.spec-item i { color: var(--brc-blue); font-size: .8rem; }

.vehicle-desc {
  font-size: .84rem; color: var(--brc-gray); line-height: 1.6;
  margin-bottom: 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Precio — más prominente */
.vehicle-price {
  margin: 4px 0 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(0,151,167,.06), rgba(21,101,192,.06));
  border-radius: 12px;
  border-left: 3px solid var(--brc-teal);
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.vehicle-price-has-promo {
  background: linear-gradient(135deg, rgba(229,57,53,.06), rgba(229,57,53,.03));
  border-left-color: #E53935;
}
.price-from {
  font-size: .7rem; color: var(--brc-gray-2);
  text-transform: uppercase; letter-spacing: .08em;
  width: 100%; margin-bottom: 2px;
}
.price-amount {
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800;
  color: var(--brc-navy); line-height: 1;
}
.price-amount-promo {
  color: #E53935;
}
.price-original {
  font-size: .9rem; color: var(--brc-gray-2);
  align-self: center;
}
.price-original del { text-decoration-color: #E53935; }
.price-currency { font-size: .85rem; font-weight: 700; color: var(--brc-teal); }
.price-period   { font-size: .7rem; color: var(--brc-gray-2); }

.vehicle-card-actions { display: flex; gap: 8px; margin-top: auto; }

/* Botones */
.btn-whatsapp-sm {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none;
  border-radius: var(--radius-full); padding: 10px 16px;
  font-size: .8rem; font-weight: 600;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; flex: 1; justify-content: center;
  box-shadow: 0 3px 10px rgba(37,211,102,.3);
}
.btn-whatsapp-sm:hover {
  background: linear-gradient(135deg, #1DA851, #0e6b57);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.45);
}

.btn-reserve-sm {
  background: linear-gradient(135deg, var(--brc-blue), var(--brc-teal));
  color: #fff; border: none;
  border-radius: var(--radius-full); padding: 10px 16px;
  font-size: .8rem; font-weight: 600;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; flex: 1; justify-content: center;
  box-shadow: 0 3px 10px rgba(21,101,192,.25);
}
.btn-reserve-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,101,192,.45); color: #fff;
}

/* Gallery strip */
.vehicle-gallery-strip {
  display: flex; gap: 5px; padding: 8px 12px;
  background: rgba(0,0,0,.04); overflow-x: auto; scrollbar-width: thin;
}
.vehicle-gallery-strip::-webkit-scrollbar { height: 3px; }
.vehicle-gallery-strip::-webkit-scrollbar-thumb { background: var(--brc-teal); border-radius: 2px; }
.gallery-thumb {
  width: 52px; height: 38px; object-fit: cover;
  border-radius: 5px; cursor: pointer;
  border: 2px solid transparent; transition: .2s; flex-shrink: 0;
}
.gallery-thumb:hover { border-color: var(--brc-teal); transform: scale(1.08); }

/* =====================================================
   PACKAGES
   ===================================================== */
.bg-light-brc { background: var(--brc-gray-bg); }

.package-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border-top: 4px solid var(--brc-blue);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative; overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%; opacity: .06;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.package-blue   { border-top-color: var(--brc-blue); }   .package-blue::before   { background: var(--brc-blue); }
.package-teal   { border-top-color: var(--brc-teal); }   .package-teal::before   { background: var(--brc-teal); }
.package-navy   { border-top-color: var(--brc-navy); }   .package-navy::before   { background: var(--brc-navy); }
.package-orange { border-top-color: var(--brc-orange); } .package-orange::before { background: var(--brc-orange); }
.package-green  { border-top-color: var(--brc-green); }  .package-green::before  { background: var(--brc-green); }
.package-purple { border-top-color: #7C3AED; }           .package-purple::before { background: #7C3AED; }

.package-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brc-navy);
  background: linear-gradient(135deg, rgba(74,134,203,.12), rgba(0,63,112,.08));
  margin-bottom: 16px; transition: var(--transition);
}
.package-card:hover .package-icon {
  background: var(--grad-gold);
  color: var(--brc-navy); transform: rotate(-8deg) scale(1.1);
  box-shadow: var(--shadow-orange);
}
.package-title { font-size: 1.05rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 8px; letter-spacing: -.01em; }
.package-desc  { font-size: .875rem; color: var(--brc-gray); margin-bottom: 18px; line-height: 1.6; }

.btn-package {
  background: transparent; color: var(--brc-blue);
  border: 1.5px solid var(--brc-blue);
  border-radius: var(--radius-full); padding: 8px 22px;
  font-size: .85rem; font-weight: 600;
  transition: var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-package:hover { background: var(--brc-blue); color: #fff; transform: translateY(-2px); }

/* =====================================================
   REQUIREMENTS
   ===================================================== */
.requirements-list { list-style: none; padding: 0; }
.requirements-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: .95rem; color: var(--brc-dark);
  border-bottom: 1px solid #F0F4FF; line-height: 1.5;
}
.requirements-list li:last-child { border-bottom: none; }
.requirements-list li i { color: var(--brc-teal); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }

.req-note {
  background: var(--brc-light); color: var(--brc-blue);
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .85rem; border-left: 3px solid var(--brc-blue); line-height: 1.6;
}

.requirements-visual { display: flex; align-items: center; height: 100%; }
.req-card-lg {
  background: linear-gradient(135deg, var(--brc-navy), var(--brc-blue));
  color: #fff; border-radius: var(--radius-md);
  padding: 44px; width: 100%; text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.req-card-lg::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%; background: rgba(255,255,255,.04);
}
.req-icon-big { font-size: 3.5rem; color: var(--brc-teal-2); margin-bottom: 18px; }
.req-card-lg h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.req-card-lg p  { color: rgba(255,255,255,.72); margin-bottom: 22px; }

.btn-whatsapp-lg {
  background: #25D366; color: #fff; border: none;
  border-radius: var(--radius-full); padding: 13px 30px;
  font-weight: 700; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-whatsapp-lg:hover { background: #1DA851; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.4); }

.btn-whatsapp-outline {
  background: transparent; color: #25D366;
  border: 1.5px solid #25D366;
  border-radius: var(--radius-full); padding: 11px 24px;
  font-weight: 600; transition: var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp-outline:hover { background: #25D366; color: #fff; transform: translateY(-2px); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.bg-dark-brc {
  background: var(--brc-navy);
  position: relative; overflow: hidden;
}
.bg-dark-brc::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(74,134,203,.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,207,1,.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  padding: 34px;
  height: 100%;
  transition: border-color .3s, background .3s, transform .3s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(0,188,212,.3);
  transform: translateY(-4px);
}

.testimonial-stars { margin-bottom: 14px; display: flex; gap: 3px; }
.testimonial-stars i { color: #FBBF24; font-size: .9rem; }

.testimonial-comment {
  font-size: .95rem; color: rgba(255,255,255,.84);
  font-style: italic; line-height: 1.75;
  margin-bottom: 22px; flex: 1;
  position: relative;
}
.testimonial-comment::before {
  content: '"';
  font-size: 3.5rem; color: var(--brc-gold); opacity: .4;
  line-height: 0;
  position: absolute; top: 16px; left: -6px;
  font-family: Georgia, serif;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--brc-teal); flex-shrink: 0;
}
.testimonial-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brc-teal), var(--brc-blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-name  { display: block; font-weight: 700; color: #fff; font-size: .95rem; }
.testimonial-rental-type { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.testimonialSwiper .swiper-wrapper { align-items: stretch; }
.testimonialSwiper .swiper-slide  { height: auto; display: flex; }
.testimonialSwiper .swiper-pagination { margin-top: 28px; position: static; }
.testimonial-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.3); width: 8px; height: 8px; transition: .25s; }
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--brc-teal-2); width: 24px; border-radius: 4px; }

/* =====================================================
   DESTINATIONS
   ===================================================== */
.destination-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px 22px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1.5px solid #EEF2FF;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  height: 100%;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,151,167,.2); }

.dest-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(74,134,203,.12), rgba(0,63,112,.07));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--brc-navy);
  margin: 0 auto 14px; transition: var(--transition);
}
.destination-card:hover .dest-icon {
  background: var(--grad-gold);
  color: var(--brc-navy); transform: scale(1.12) rotate(-8deg);
  box-shadow: var(--shadow-orange);
}
.dest-name { font-size: 1rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 7px; letter-spacing: -.01em; }
.dest-desc { font-size: .82rem; color: var(--brc-gray); margin-bottom: 14px; line-height: 1.55; }
.dest-link { font-size: .8rem; font-weight: 600; color: var(--brc-blue); display: inline-flex; align-items: center; gap: 4px; }
.dest-link:hover { color: var(--brc-teal); }
.dest-link i { transition: transform .2s var(--ease-out); }
.dest-link:hover i { transform: translateX(4px); }

/* =====================================================
   ABOUT / NOSOTROS
   ===================================================== */
.about-text { font-size: 1rem; color: var(--brc-gray); line-height: 1.85; }

.about-card {
  background: #fff; border-radius: var(--radius-sm);
  padding: 22px; border: 1.5px solid #EEF2FF;
  transition: var(--transition);
}
.about-card:hover { border-color: rgba(0,151,167,.25); box-shadow: 0 6px 24px rgba(0,151,167,.10); transform: translateY(-3px); }
.about-card-icon { font-size: 1.5rem; color: var(--brc-navy); margin-bottom: 10px; }
.about-card h5 { font-size: .95rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 6px; }
.about-card p  { font-size: .82rem; color: var(--brc-gray); margin: 0; }

.about-values-card {
  background: linear-gradient(135deg, var(--brc-navy), var(--brc-blue));
  border-radius: var(--radius-md); padding: 40px;
  color: #fff; box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.about-values-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%; background: rgba(255,255,255,.04);
}
.about-values-card h4 { color: #fff; margin-bottom: 18px; }
.values-list { display: flex; flex-wrap: wrap; gap: 10px; }
.value-tag {
  background: rgba(255,255,255,.12); color: #fff;
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.15); transition: var(--transition);
}
.value-tag:hover { background: rgba(255,207,1,.22); border-color: rgba(255,207,1,.45); color: var(--brc-gold); }

/* =====================================================
   FAQ
   ===================================================== */
.faq-item {
  border: 1.5px solid #EEF2FF !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(74,134,203,.2) !important; }
.faq-item .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600; font-size: .95rem;
  color: var(--brc-navy);
  background: #fff !important;
  box-shadow: none !important;
  padding: 18px 20px;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--brc-blue-light);
  background: rgba(74,134,203,.03) !important;
}
.faq-item .accordion-button::after { filter: brightness(0) saturate(100%) invert(42%) sepia(49%) saturate(500%) hue-rotate(155deg); }
.accordion-body { font-size: .9rem; color: var(--brc-gray); line-height: 1.75; padding: 4px 20px 18px; }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.bg-primary-brc {
  background: linear-gradient(135deg, var(--brc-navy) 0%, var(--brc-blue-light) 100%);
  position: relative; overflow: hidden;
}
.bg-primary-brc::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 40%, rgba(0,0,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-title { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.newsletter-sub   { opacity: .82; font-size: .95rem; }
.text-white-75    { color: rgba(255,255,255,.82) !important; }

.newsletter-input {
  border: 2px solid rgba(255,255,255,.25) !important;
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  padding: 13px 22px !important;
  font-family: var(--font-body) !important;
  transition: border-color .25s, background .25s !important;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.6) !important; }
.newsletter-input:focus {
  border-color: rgba(255,255,255,.65) !important;
  background: rgba(255,255,255,.18) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.10) !important;
}

.btn-newsletter {
  background: #fff; color: var(--brc-blue);
  border-radius: var(--radius-full); padding: 13px 32px;
  font-weight: 700; font-size: .95rem; border: none;
  white-space: nowrap; transition: var(--transition); cursor: pointer;
}
.btn-newsletter:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.18); color: var(--brc-blue); }

/* =====================================================
   LOCATION / MAP
   ===================================================== */
.location-info-card { background: #fff; border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-md); }
.location-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid #F0F4FF; }
.location-item:last-of-type { border-bottom: none; }
.location-icon-wrap {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(0,151,167,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-icon-wrap i { font-size: 1rem; color: var(--brc-teal); }
/* Legacy alias for location-item icon */
.location-item > i { font-size: 1.2rem; color: var(--brc-teal); flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; font-size: .78rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.location-item p, .location-item a, .location-item span { font-size: .9rem; color: var(--brc-gray); margin: 0; }
.location-item a:hover { color: var(--brc-teal); }

.map-wrapper { min-height: 400px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 400px; border: none; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 400px; background: var(--brc-gray-bg); border-radius: var(--radius-md); text-align: center;
}
.map-placeholder i { font-size: 3rem; color: var(--brc-gray-2); margin-bottom: 12px; }

.btn-outline-brc {
  border: 1.5px solid var(--brc-blue); color: var(--brc-blue);
  border-radius: var(--radius-full); padding: 10px 26px;
  font-weight: 600; background: transparent; transition: var(--transition); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline-brc:hover { background: var(--brc-blue); color: #fff; transform: translateY(-2px); }

/* =====================================================
   FOOTER
   ===================================================== */
.brc-footer { background: var(--brc-navy); position: relative; overflow: hidden; }
.brc-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brc-gold), var(--brc-blue-light), var(--brc-gold));
}

.footer-top { padding: 64px 0 44px; }
.footer-logo { max-height: 52px; }
.footer-logo-text { font-size: 1.4rem; font-weight: 800; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 280px; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--transition);
}
.social-link:hover { background: var(--brc-gold); color: var(--brc-navy); border-color: var(--brc-gold); transform: translateY(-3px); box-shadow: var(--shadow-orange); }

.footer-heading { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--brc-teal-2); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-list i { color: var(--brc-teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a, .footer-contact-list span { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--brc-teal-2); }

.footer-hours { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.8; }
.lang-selector-footer { display: flex; flex-direction: column; gap: 6px; }
.lang-btn-footer { font-size: .82rem; color: rgba(255,255,255,.55); padding: 5px 12px; border-radius: 6px; width: fit-content; transition: .2s; cursor: pointer; }
.lang-btn-footer:hover, .lang-btn-footer.active { color: #fff; background: rgba(255,255,255,.10); }

.footer-bottom { background: rgba(0,0,0,.28); padding: 18px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.40); }
.footer-legal-link { font-size: .8rem; color: rgba(255,255,255,.40); transition: color .2s; }
.footer-legal-link:hover { color: var(--brc-teal); }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: var(--radius-full);
  padding: 14px 22px 14px 16px;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  text-decoration: none; transition: var(--transition);
  animation: waPulseGlow 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1DA851; color: #fff;
  transform: scale(1.06) translateY(-3px);
  animation: none;
  box-shadow: 0 12px 40px rgba(37,211,102,.55);
}
.whatsapp-icon { font-size: 1.7rem; line-height: 1; }
.whatsapp-text { font-size: .84rem; font-weight: 700; white-space: nowrap; }

@keyframes waPulseGlow {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 48px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.12); }
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed; bottom: 94px; right: 30px; z-index: 998;
  width: 44px; height: 44px;
  background: var(--brc-blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .25s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--brc-blue-light); color: #fff; transform: translateY(-3px); }

/* =====================================================
   LIGHTBOX
   ===================================================== */
#imgLightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9);
  align-items: center; justify-content: center;
  cursor: zoom-out; backdrop-filter: blur(4px);
}
#imgLightbox.open { display: flex; }
#imgLightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 64px rgba(0,0,0,.6); cursor: default;
}
#imgLightbox .lb-close {
  position: absolute; top: 20px; right: 26px;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.10); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; opacity: .8; transition: .2s;
}
#imgLightbox .lb-close:hover { opacity: 1; background: rgba(255,255,255,.2); transform: rotate(90deg); }
#imgLightbox .lb-caption {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .88rem;
  background: rgba(0,0,0,.5); padding: 6px 20px; border-radius: var(--radius-full);
  backdrop-filter: blur(8px); white-space: nowrap;
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  min-height: 320px;
  background: linear-gradient(135deg, var(--brc-navy) 0%, var(--brc-blue) 100%);
  display: flex; align-items: center;
  position: relative; padding-top: 80px; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0,151,167,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(0,188,212,.12) 0%, transparent 50%);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&q=80') center/cover;
  opacity: .07;
}
.page-header-content { position: relative; z-index: 2; text-align: center; padding: 44px 0; }
.page-header-content h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 12px; letter-spacing: -.025em; }
.page-header-content p  { color: rgba(255,255,255,.72); font-size: 1rem; max-width: 600px; margin: 0 auto 18px; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item a:hover { color: var(--brc-teal-2); }
.breadcrumb-item.active { color: rgba(255,255,255,.82); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* =====================================================
   VEHICLES FILTERS
   ===================================================== */
.vehicles-filters-bar {
  background: #fff; padding: 14px 0 16px;
  border-bottom: 1px solid #EEF2FF;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  position: sticky; top: 70px; z-index: 100;
}
.filter-label { font-size: .82rem; font-weight: 700; color: var(--brc-gray); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.filter-btn {
  background: transparent; border: 1.5px solid #E2E8F0; color: var(--brc-gray);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-size: .82rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { background: var(--brc-teal); color: #fff; border-color: var(--brc-teal); }
.filter-btn.active { background: var(--brc-blue); color: #fff; border-color: var(--brc-blue); box-shadow: var(--shadow-blue); }
/* Feature filter row uses teal when active */
[data-filter-feat].active { background: var(--brc-teal); border-color: var(--brc-teal); box-shadow: var(--shadow-teal); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner-box {
  background: linear-gradient(135deg, var(--brc-navy), var(--brc-blue));
  color: #fff; border-radius: var(--radius-lg);
  padding: 48px; max-width: 720px; margin: 0 auto; text-align: center;
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.cta-banner-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-banner-box h3 { font-size: 1.4rem; margin-bottom: 12px; letter-spacing: -.015em; }
.cta-banner-box p  { color: rgba(255,255,255,.72); margin-bottom: 24px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-box { background: #fff; border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow-md); height: 100%; }
.contact-info-title {
  font-size: 1.2rem; font-weight: 700; color: var(--brc-navy);
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--brc-light); letter-spacing: -.015em;
}
.contact-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #F0F4FF; }
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 42px; height: 42px; background: var(--brc-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--brc-blue); flex-shrink: 0;
}
.ci-whatsapp { background: #DCFCE7 !important; color: #16A34A !important; }
.contact-info-item strong { display: block; font-size: .78rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-item a, .contact-info-item span { font-size: .9rem; color: var(--brc-gray); }
.contact-info-item a:hover { color: var(--brc-teal); }

.contact-form-box { background: #fff; border-radius: var(--radius-md); padding: 38px; box-shadow: var(--shadow-md); }
.contact-form-title { font-size: 1.2rem; font-weight: 700; color: var(--brc-navy); margin-bottom: 6px; letter-spacing: -.015em; }

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-section { background: var(--brc-gray-bg); }
.thanks-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 64px 44px; max-width: 580px;
  box-shadow: var(--shadow-xl); border-top: 4px solid var(--brc-gold);
}
.thanks-icon { font-size: 4rem; color: var(--brc-navy); }
.thanks-title { font-size: 2.2rem; font-weight: 800; color: var(--brc-navy); letter-spacing: -.025em; }
.thanks-msg { color: var(--brc-gray); font-size: 1rem; }

/* =====================================================
   COOKIE CONSENT
   ===================================================== */
.cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: var(--brc-navy); border-top: 3px solid var(--brc-gold);
  box-shadow: 0 -6px 32px rgba(0,0,0,.28); transition: opacity .4s, transform .4s;
}
.cookie-consent-banner .container { max-width: 1140px; }
.cookie-consent-banner p { color: rgba(255,255,255,.85); font-size: .9rem; }
.cookie-link { color: var(--brc-teal-2); font-size: .85rem; white-space: nowrap; }
.cookie-link:hover { color: #fff; }

/* =====================================================
   PRIVACY PAGE
   ===================================================== */
.privacy-content { max-width: 860px; margin: 0 auto; line-height: 1.9; color: var(--brc-dark); }
.privacy-content h2 { color: var(--brc-navy); margin-top: 36px; margin-bottom: 12px; font-size: 1.35rem; letter-spacing: -.015em; }
.privacy-content h3 { color: var(--brc-blue); margin-top: 22px; font-size: 1.1rem; }
.privacy-content p, .privacy-content ul { margin-bottom: 16px; }
.privacy-content ul { padding-left: 22px; }

/* =====================================================
   NAVBAR LOGO VARIANTS
   ===================================================== */
.navbar-logo-sm  { height: 40px !important; width: auto !important; max-width: 180px !important; background: transparent !important; border: 0 !important; }
.navbar-logo-md  { height: 56px !important; width: auto !important; max-width: 200px !important; background: transparent !important; border: 0 !important; }
.navbar-logo-lg  { height: 72px !important; width: auto !important; max-width: 240px !important; background: transparent !important; border: 0 !important; }

/* =====================================================
   SHIMMER SKELETON
   ===================================================== */
.skeleton {
  background: linear-gradient(90deg, #F0F4FF 25%, #E8EDF5 50%, #F0F4FF 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =====================================================
   PULSE RING (important CTAs)
   ===================================================== */
.pulse-ring { position: relative; display: inline-flex; }
.pulse-ring::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: var(--radius-full); border: 2px solid var(--brc-gold);
  opacity: 0; animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(.95); opacity: .6; }
  70%  { transform: scale(1.1);  opacity: 0; }
  100% { transform: scale(1.1);  opacity: 0; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .section-padding { padding: 72px 0; }
  .brc-navbar { background: rgba(10,22,40,.95) !important; backdrop-filter: blur(16px); }
  .navbar-actions { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .rental-form-section { margin-top: 0; }
  .hero-stats { justify-content: center; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-text { display: none !important; }
  .back-to-top { bottom: 82px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .hero-cta a { width: 100%; justify-content: center; text-align: center; }
  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-secondary,
  .hero-cta .btn-hero-whatsapp { display: flex; }
  .rental-form-card { padding: 28px 20px; }
  .cta-banner-box { padding: 32px 24px; }
  .req-card-lg { padding: 32px 24px; }
  .about-values-card { padding: 30px 24px; }
  .back-to-top { bottom: 78px; right: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .hero-shape-1, .hero-shape-2 { display: none; }
}

@media (max-width: 576px) {
  .section-padding { padding: 44px 0; }
  .section-title { font-size: 1.7rem; }
  .package-card { padding: 26px 20px; }
  .contact-form-box { padding: 24px 18px; }
  .contact-info-box { padding: 24px 18px; }
  .rental-form-card { border-radius: var(--radius-md); }
  .vehicle-card-actions { flex-direction: column; }
}

/* =====================================================
   VIDEO YOUTUBE SECTION — layout 2 columnas
   ===================================================== */
.video-section { position: relative; overflow: hidden; }

/* Orbe dorado decorativo de fondo */
.video-section::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,207,1,.07) 0%, transparent 65%);
  top: 50%; right: -150px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Columna de texto — descripción y puntos */
.video-side-desc {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  max-width: 460px;
}

/* Lista de puntos de valor */
.video-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.video-feature-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: .92rem; color: rgba(255,255,255,.82);
  font-weight: 500;
}
.vfl-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,207,1,.15);
  border: 1px solid rgba(255,207,1,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brc-gold);
  font-size: 1rem;
  transition: var(--transition);
}
.video-feature-list li:hover .vfl-icon {
  background: var(--brc-gold);
  color: var(--brc-navy);
  border-color: var(--brc-gold);
}

/* Responsive 16:9 embed container */
.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Marco luxury: anillo dorado + sombra profunda */
  box-shadow:
    0 0 0 2px rgba(255,207,1,.20),
    0 0 0 7px rgba(255,207,1,.07),
    0 32px 80px rgba(0,0,0,.65);
  z-index: 1;
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.video-embed-wrapper:hover {
  box-shadow:
    0 0 0 2px rgba(255,207,1,.40),
    0 0 0 9px rgba(255,207,1,.12),
    0 40px 100px rgba(0,0,0,.75);
  transform: translateY(-5px);
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
}

@media (max-width: 991px) {
  .video-side-desc { max-width: 100%; }
  .video-section::after { display: none; }
}

/* =====================================================
   ACCESSIBILITY: prefers-reduced-motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
