/* ═══════════════════════════════════════════════════════════════
   KNOTS COSTA BRAVA — Premium Yacht Care Design System
   2026 Edition: Blanco Puro, Azul Abisal, Dorado Náutico
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  /* KNOTS Palette 2026 */
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --ice-blue: #EEF3F7;
  --deep-blue: #00243D;
  --abyss-blue: #001A2E;
  --gold: #D4AF37;
  --gold-light: #E8D48B;
  --gold-dark: #B8962E;
  --text: #1A2B3C;
  --text-light: #5A6B7C;
  --text-muted: #8A9BAC;
  --border: #DDE4EA;
  
  /* Shadows - suave 2026 */
  --shadow-sm: 0 2px 8px rgba(0,36,61,0.06);
  --shadow-md: 0 4px 20px rgba(0,36,61,0.08);
  --shadow-lg: 0 8px 40px rgba(0,36,61,0.12);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);
  --shadow-gold-lg: 0 8px 40px rgba(212,175,55,0.35);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;
  
  /* Layout */
  --max-w: 1200px;
  --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Azul Abisal Premium
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,36,61,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  display: block;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--deep-blue);
}

.brand-accent {
  color: var(--gold-dark);
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  gap: 0.15rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--deep-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.8rem;
  border: 1.5px solid var(--deep-blue);
  border-radius: 6px;
  background: transparent;
  color: var(--deep-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--deep-blue);
  color: var(--white);
}

.btn.ghost {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Admin button - more discreet */
.admin-btn {
  opacity: 0.4;
  font-size: 0.6rem;
  padding: 0.3rem 0.6rem;
}

.admin-btn:hover {
  opacity: 1;
}

.nav-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-blue);
  position: relative;
  transition: background 0.3s;
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--deep-blue);
  transition: transform 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — Dorado Náutico
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--abyss-blue);
  box-shadow: var(--shadow-gold);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-gold-glow {
  box-shadow: 0 4px 20px rgba(212,175,55,0.35), 0 0 30px rgba(212,175,55,0.1);
}

.btn-gold-glow:hover {
  box-shadow: 0 6px 25px rgba(212,175,55,0.45), 0 0 50px rgba(212,175,55,0.15);
}

.btn.outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.btn.outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Full Bleed Premium
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-h) + 4rem) 1.5rem 5rem;
  background:
    linear-gradient(180deg, rgba(0,36,61,0.75) 0%, rgba(0,26,46,0.85) 100%),
    url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,36,61,0.4) 0%, transparent 40%, transparent 60%, rgba(0,26,46,0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title strong {
  color: var(--gold);
}

.hero-locations {
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 0.3rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Grid */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.intro-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}

a.intro-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
}

.intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.intro-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.intro-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
}

.hero-wave path { fill: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 6rem 0;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.hero.tab-panel.active { display: flex; }

#serveis { background: var(--white); }
#traslados { background: var(--ice-blue); }
#planes  { background: var(--white); }
#calculadora { background: linear-gradient(180deg, var(--ice-blue) 0%, var(--white) 100%); }
#zona { background: linear-gradient(135deg, var(--abyss-blue) 0%, var(--deep-blue) 100%); }

/* ZONA Section */
.zona-section .section-title,
.zona-section .section-lead {
  color: var(--white);
}

.zona-section .section-label {
  color: var(--gold);
}

.zona-map-container {
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.zona-ports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.zona-port-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.zona-port-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.port-marker {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--abyss-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.zona-port-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.zona-port-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.zona-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .zona-ports {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .zona-map-container iframe {
    height: 300px;
  }
}
#reserva { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES CARDS — 12px radius
   ═══════════════════════════════════════════════════════════════ */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-detail.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold);
}

.service-img-wrap { height: 180px; overflow: hidden; }

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-detail:hover .service-img-wrap img { transform: scale(1.05); }

.service-content { padding: 1.8rem; }

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 0.4rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.service-unit { font-size: 0.85rem; color: var(--text-muted); }

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #00243D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.transfer-rate .discount-badge {
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-includes { margin-top: 1.2rem; }

.service-includes h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--deep-blue);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.service-includes ul { padding: 0; }

.service-includes li {
  color: var(--text);
  font-size: 0.88rem;
  padding: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.service-content .btn { margin-top: 1.2rem; width: 100%; }

/* Storm Guard */
.storm-guard-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--abyss-blue) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.storm-guard-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.storm-guard-icon {
  width: 100px;
  height: 100px;
  background: rgba(212,175,55,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storm-guard-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.storm-guard-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.storm-guard-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.storm-guard-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.storm-guard-features li {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
}

.storm-guard-features li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 0.3rem;
  font-weight: 700;
}

.storm-guard-image {
  width: 250px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.storm-guard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--abyss-blue) 100%);
  border-radius: 12px;
  color: var(--white);
}

.service-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   TRANSFERS SECTION
   ═══════════════════════════════════════════════════════════════ */
.transfers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.transfer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.transfer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.transfer-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.transfer-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--abyss-blue);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 0 0 8px 8px;
}

.transfer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.transfer-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.transfer-rate {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.transfer-rate span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.transfer-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.transfer-features {
  text-align: left;
  padding: 1rem;
  background: var(--ice-blue);
  border-radius: 8px;
}

.transfer-features li {
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.transfer-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Transfer Calculator */
.transfer-calculator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.transfer-calculator h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.transfer-calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.millas-input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.millas-input {
  width: 100px;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--deep-blue);
}

.millas-input:focus {
  outline: none;
  border-color: var(--gold);
}

.millas-suffix {
  font-weight: 600;
  color: var(--text-muted);
}

.transfer-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.transfer-type-toggle button {
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--ice-blue);
  border: 2px solid transparent;
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transfer-type-toggle button:hover {
  border-color: var(--gold);
}

.transfer-type-toggle button.active {
  background: var(--deep-blue);
  color: var(--white);
}

.transfer-result {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--abyss-blue) 100%);
  border-radius: 8px;
}

.transfer-result-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.transfer-result-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.transfer-calculator .btn {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   PLANS — Glassmorphism Cards
   ═══════════════════════════════════════════════════════════════ */
.plans-calculator {
  background: var(--ice-blue);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.plans-calculator label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.plans-calculator input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  max-width: 450px;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
}

.plans-calculator input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(212,175,55,0.4);
  border: 3px solid var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(248,250,251,0.97) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.25s; }
.price-card:nth-child(3) { animation-delay: 0.4s; }

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.essential { border-top: 4px solid var(--deep-blue); }

.price-card.premium {
  border-top: 4px solid var(--gold);
  position: relative;
}

.price-card.premium::before {
  content: 'MÉS POPULAR';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--abyss-blue);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 0 0 6px 6px;
}

.price-card.vip {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #FFFEF5 0%, #FFFCF0 50%, var(--white) 100%);
}

.card-tier-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 0.4rem 0;
  line-height: 1;
}

.price-card.vip .price { color: var(--gold-dark); }

.price-per-meter {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-total {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.price-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.price-sub { font-size: 0.75rem; color: var(--text-muted); }

.price-card .includes {
  text-align: left;
  margin: 1.2rem 0;
  padding: 0;
}

.price-card .includes li {
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  padding-left: 1.6rem;
  position: relative;
}

.price-card .includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65rem;
  width: 7px; height: 7px;
  border-radius: 50%;
}

.price-card.essential .includes li::before { background: var(--deep-blue); }
.price-card.premium .includes li::before { background: var(--gold); }
.price-card.vip .includes li::before { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════════════════════════ */
.calculadora-section {
  background: linear-gradient(180deg, var(--ice-blue) 0%, var(--white) 30%);
}

.calculator-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.calc-form { display: flex; flex-direction: column; gap: 1.5rem; }

.calc-group { display: flex; flex-direction: column; gap: 0.6rem; }

.calc-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-blue);
}

.calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.calc-slider-min, .calc-slider-max {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 25px;
}

.calc-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.calc-group input[type="range"] {
  -webkit-appearance: none;
  flex: 1;
  height: 10px;
  background: linear-gradient(90deg, var(--deep-blue) 0%, var(--deep-blue) var(--progress, 50%), var(--border) var(--progress, 50%), var(--border) 100%);
  border-radius: 5px;
  outline: none;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 4px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(212,175,55,0.4);
}

.calc-type-toggle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.calc-type-toggle button {
  padding: 0.85rem 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--ice-blue);
  border: 2px solid transparent;
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-type-toggle button:hover { border-color: var(--gold); }

.calc-type-toggle button.active {
  background: var(--deep-blue);
  color: var(--white);
}

.calc-result {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--abyss-blue) 100%);
  border-radius: 12px;
}

.calc-result-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-note {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.8rem;
  font-style: italic;
}

.calc-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.calc-info-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.calc-info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.calc-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.calc-info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.4rem;
}

.calc-info-item p { color: var(--text-light); font-size: 0.78rem; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   COVERAGE ZONE
   ═══════════════════════════════════════════════════════════════ */
.coverage-section {
  background: linear-gradient(135deg, var(--abyss-blue) 0%, var(--deep-blue) 100%);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.coverage-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.coverage-map iframe {
  display: block;
}

.coverage-ports {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.coverage-ports h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.ports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.port-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.port-item:hover {
  background: rgba(255,255,255,0.08);
}

.port-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.port-item div {
  display: flex;
  flex-direction: column;
}

.port-item strong {
  color: var(--white);
  font-size: 0.9rem;
}

.port-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.coverage-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.coverage-note svg {
  color: var(--gold);
  flex-shrink: 0;
}

.coverage-note span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .ports-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESERVATION FORM
   ═══════════════════════════════════════════════════════════════ */
.reservation-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row.full { grid-column: 1 / -1; }

.form-row label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-blue);
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.contact-info {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: var(--ice-blue);
  border-radius: 12px;
  text-align: center;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-item p { color: var(--text-light); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.email-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--abyss-blue);
}

.email-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Azul Abisal
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep-blue);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
}

.site-footer strong {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--white);
}

.site-footer address {
  font-style: normal;
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.site-footer p { font-size: 0.85rem; margin-top: 0.2rem; }

.site-footer .muted {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.site-footer .brand-name { color: var(--gold); }

/* ADMIN */
.hidden { display: none !important; }

.admin {
  background: var(--abyss-blue);
  color: var(--white);
  min-height: 100vh;
}

.admin .section-lead { color: rgba(255,255,255,0.6); }

/* Admin Login */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.admin-login-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.admin-login-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.admin-login-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.admin-login-card input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.admin-login-card input:focus {
  outline: none;
  border-color: var(--gold);
}

.admin-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Admin Dashboard */
.admin-dashboard {
  animation: fadeIn 0.3s ease;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

/* Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* Calendar */
.admin-calendar-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.calendar-tab {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-tab:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.calendar-tab.active {
  background: var(--gold);
  color: var(--abyss-blue);
  border-color: var(--gold);
  font-weight: 600;
}

.admin-calendar-container {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.google-calendar-container {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.google-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.google-calendar-header h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.google-calendar-header .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-calendar-iframe {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-header h3 {
  font-size: 1.2rem;
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8);
}

.calendar-day:hover {
  background: rgba(255,255,255,0.1);
}

.calendar-day.today {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.calendar-day.has-booking {
  background: var(--gold);
  color: var(--abyss-blue);
  font-weight: 600;
}

.calendar-day.other-month {
  opacity: 0.3;
}

/* Bookings List */
.admin-bookings-list {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.admin-bookings-list h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.booking-item {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--gold);
}

.booking-item:hover {
  background: rgba(255,255,255,0.08);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.booking-name {
  font-weight: 600;
  color: var(--white);
}

.booking-service {
  font-size: 0.8rem;
  background: var(--gold);
  color: var(--abyss-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.booking-details {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.booking-details span {
  margin-right: 1rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.booking-actions .btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.booking-actions .calendar-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.booking-actions .calendar-btn:hover {
  background: var(--gold);
  color: var(--abyss-blue);
}

.booking-service.confirmed {
  background: #4CAF50;
}

.confirmed-badge {
  color: #4CAF50;
  font-weight: 600;
  font-size: 0.85rem;
}

.no-bookings {
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 2rem;
}

.admin-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin .btn.ghost {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

.admin .btn.ghost.danger {
  border-color: rgba(255,100,100,0.3);
  color: #ff6b6b;
}

.admin .btn.ghost.danger:hover {
  background: rgba(255,100,100,0.1);
  border-color: #ff6b6b;
}

/* Responsive Admin */
@media (max-width: 768px) {
  .admin-stats { grid-template-columns: 1fr; }
  .admin-header { flex-direction: column; gap: 1rem; }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: repeat(3, 1fr); }
  .services-detailed { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .calc-info { grid-template-columns: repeat(2, 1fr); }
  .transfers-grid { grid-template-columns: 1fr; }
  .storm-guard-inner { grid-template-columns: 1fr; text-align: center; }
  .storm-guard-image { width: 100%; max-width: 350px; margin: 0 auto; }
  .storm-guard-features { justify-content: center; }
  
  .service-detail { flex-direction: column; }
  .service-img-wrap { width: 100%; height: 250px; }
  
  .admin-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header móvil */
  .brand-name { font-size: 0.85rem; letter-spacing: 0.02em; }
  .brand-name strong { font-size: 0.85rem; }
  .brand-accent { display: none; }
  .brand-logo svg { width: 22px; height: 22px; }
  
  .header-actions { gap: 0.3rem; }
  .header-actions .btn.ghost { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .lang-btn { padding: 0.4rem 0.6rem; font-size: 0.7rem; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.2rem; }
  .main-nav a { padding: 0.7rem 0.9rem; font-size: 0.85rem; }
  .nav-toggle { display: block; }

  .hero { padding-top: calc(var(--header-h) + 2rem); min-height: auto; padding-bottom: 3.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-tagline { font-size: 0.85rem; }
  .hero-sub { font-size: 0.95rem; }
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .intro-card { padding: 1.2rem 0.8rem; }
  .intro-icon { margin-bottom: 0.5rem; }
  .intro-icon svg { width: 24px; height: 24px; }
  .intro-card h3 { font-size: 0.8rem; }
  .intro-card p { font-size: 0.7rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 260px; }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  
  .storm-guard-section { padding: 1.8rem 1.2rem; }
  .storm-guard-icon { width: 70px; height: 70px; }
  .storm-guard-icon svg { width: 40px; height: 40px; }
  .storm-guard-content h3 { font-size: 1.3rem; }
  
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; align-items: center; }
  .admin-grid { grid-template-columns: 1fr; }
  
   .calculator-container { padding: 1.8rem 1.2rem; }
   .calc-result-value { font-size: 2.2rem; }
   .reservation-form { padding: 1.8rem 1.2rem; }
   .calc-type-toggle { grid-template-columns: repeat(2, 1fr); }
   
   .email-float { width: 54px; height: 54px; right: 1rem; bottom: 1rem; }
   
   .service-detail { flex-direction: column; }
   .service-img-wrap { width: 100%; height: 200px; }
   .service-content { padding: 1.5rem; }
   
   .transfer-card { padding: 1.5rem; }
   .transfer-rate { font-size: 1.5rem; }
   
   .calc-info { grid-template-columns: repeat(2, 1fr); }
   
   .admin-login-card { padding: 1.5rem; margin: 0 1rem; }
   .calendar-grid { gap: 0.25rem; }
   .calendar-day { font-size: 0.8rem; }
   
   .booking-item { padding: 0.8rem; }
   .booking-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
   .booking-details span { display: block; margin: 0.2rem 0; }
 }

@media (max-width: 480px) {
  /* Header muy pequeño */
  .brand-name { font-size: 0.75rem; }
  .brand-name strong { font-size: 0.75rem; }
  .brand-logo svg { width: 18px; height: 18px; }
  .header-actions .btn.ghost { padding: 0.3rem 0.5rem; font-size: 0.65rem; }
  .lang-btn { padding: 0.3rem 0.5rem; font-size: 0.65rem; }
  
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .container { padding: 0 0.8rem; }
  .calc-info { grid-template-columns: 1fr 1fr; }
  .price-card { padding: 1.6rem 1.2rem; }
  .price-card .price { font-size: 2rem; }
  
  .hero-title { font-size: 1.6rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.3rem 0.8rem; }
  
  .calc-type-toggle { grid-template-columns: 1fr; }
  .calc-type-toggle button { font-size: 0.85rem; padding: 0.7rem; }
  
  .btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  
  .stat-card { padding: 1rem; }
  .stat-number { font-size: 1.8rem; }
  
  .calendar-day-name { font-size: 0.65rem; }
  .calendar-day { font-size: 0.75rem; }
  
  /* Google Calendar responsive */
  .google-calendar-iframe { height: 350px; }
  .google-calendar-header { flex-direction: column; gap: 0.5rem; }
  .calendar-tab { font-size: 0.8rem; padding: 0.6rem; }
  
  /* Booking actions wrap */
  .booking-actions { flex-wrap: wrap; }
  .booking-actions .btn-sm { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
}
