:root {
  /* Light Theme Colors */
  --bg-dark: #ffffff;
  --bg-darker: #f8f8f8;
  --bg-section: #f5f5f5;
  --surface: #ffffff;
  --surface-light: #fafafa;

  /* Text */
  --text-white: #1a1a1a;
  --text-light: rgba(26, 26, 26, 0.9);
  --text-muted: rgba(26, 26, 26, 0.6);
  --text-dark: #ffffff;

  /* Accent - Golden/Amber */
  --accent: #c9a66b;
  --accent-light: #d4b78a;
  --accent-dark: #b08d57;
  --accent-glow: rgba(201, 166, 107, 0.2);

  /* Borders & Lines */
  --line: rgba(0, 0, 0, 0.1);
  --line-accent: rgba(201, 166, 107, 0.3);

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 5px 30px var(--accent-glow);

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 15px;
}

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

.text-center {
  text-align: center;
}

/* Section Heading - Feane Style */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 35px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.btn--dark {
  background: var(--bg-darker);
  color: var(--text-white);
  border-color: var(--line);
}

.btn--dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 10px 25px;
  font-size: 13px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand/Logo */
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.header__brand-text {
  line-height: 1.2;
}

.header__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.header__subtitle {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Desktop Navigation */
.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.header__nav a:hover::after {
  width: 100%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__cart {
  position: relative;
  width: 45px;
  height: 45px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}

.header__cart:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.header__cart svg {
  width: 20px;
  height: 20px;
}

.header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Button */
.header__user {
  width: 45px;
  height: 45px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}

.header__user:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.header__user svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 5px;
  background: none;
}

.header__toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 30px 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--line);
  z-index: 999;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu__nav a,
.mobile-menu__nav button {
  display: block;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-align: left;
  background: transparent;
  width: 100%;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav button:hover {
  background: var(--surface);
  color: var(--accent);
}

.mobile-menu__nav .btn--primary {
  margin-top: 15px;
  text-align: center;
  background: var(--accent);
  color: var(--text-dark);
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }

  .header__toggle {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, var(--accent-glow), transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius-full);
  margin-bottom: 25px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero__badge span {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero__title span {
  color: var(--accent);
}

.hero__text {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__feature-icon {
  width: 50px;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.hero__feature-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.hero__feature-text small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. ABOUT / NOSOTROS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.about {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.about__content h2 span {
  color: var(--accent);
}

.about__content > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.about__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.about__feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.about__feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. SERVICES SECTION - CAROUSEL
   ───────────────────────────────────────────────────────────────────────────── */
.services {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

/* Carousel Container */
.services-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 20px;
}

.services-carousel__track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
  cursor: grab;
}

.services-carousel__track:active {
  cursor: grabbing;
}

.services-carousel__track.dragging {
  transition: none;
}

/* Service Slide Card */
.service-slide {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.service-slide:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* Image Container */
.service-slide__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-slide:hover .service-slide__image img {
  transform: scale(1.08);
}

/* Overlay gradient */
.service-slide__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

/* Tag on image */
.service-slide__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* Content */
.service-slide__content {
  padding: 30px;
  position: relative;
}

.service-slide__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-slide__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-slide__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-slide__price strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.service-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.service-slide__btn:hover {
  background: var(--accent);
  color: var(--text-dark);
}

/* Carousel Navigation */
.services-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.services-carousel__btn {
  width: 50px;
  height: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-carousel__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.services-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.services-carousel__btn svg {
  width: 20px;
  height: 20px;
}

/* Dots indicator */
.services-carousel__dots {
  display: flex;
  gap: 10px;
}

.services-carousel__dot {
  width: 12px;
  height: 12px;
  background: var(--surface-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-carousel__dot:hover {
  background: var(--accent-glow);
}

.services-carousel__dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .service-slide {
    flex: 0 0 calc(50% - 13px);
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .service-slide {
    flex: 0 0 calc(100% - 0px);
    min-width: 280px;
  }

  .service-slide__image {
    height: 220px;
  }

  .services-carousel {
    margin: 0 -10px;
    padding: 10px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. PRODUCTS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.products {
  background: var(--bg-section);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.1);
}

.product-card__placeholder {
  color: var(--text-muted);
  font-size: 14px;
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card__body {
  padding: 25px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.product-card__desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.product-card__btn {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.product-card__btn:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
}

.product-card__btn svg {
  width: 20px;
  height: 20px;
}

/* Badge variantes para productos */
.product-card__badge--soldout {
  background: #dc2626;
}

.product-card__badge--warning {
  background: #f59e0b;
}

/* Botón deshabilitado (producto agotado) */
.product-card__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.product-card__btn--disabled:hover {
  transform: none;
  background: var(--accent);
}
/* ─────────────────────────────────────────────────────────────────────────────
   10. GALLERY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.gallery {
  background: var(--bg-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery__item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__caption {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. BOOKING SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.booking {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.booking__card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
}

.booking__card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 30px;
}

.booking__card h2 span {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   12. CONTACT SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.contact {
  background: var(--bg-section);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact__info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 30px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: var(--bg-section);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__item-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.contact__item-content p,
.contact__item-content a {
  color: var(--text-muted);
  font-size: 14px;
}

.contact__item-content a:hover {
  color: var(--accent);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* Map */
.contact__map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contact__map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--line);
}

.contact__map-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.contact__map-header a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.contact__map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}

.contact__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer__column h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer__column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__hours p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer__hours span {
  color: var(--accent);
  font-weight: 500;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer__social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. FORMS
   ───────────────────────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-section);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a66b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}

.form-select option {
  background: var(--surface);
  color: var(--text-white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   15. MODALS & OVERLAYS
   ───────────────────────────────────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.is-open {
  display: flex;
  opacity: 1;
}

.modal {
  width: min(550px, 100%);
  max-height: 100%;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-section);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
}

.modal__close {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.modal__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.modal__body {
  padding: 30px;
}

.modal__intro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

/* Cart Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 2010;
}

.drawer-overlay.is-open {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 2020;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  padding: 25px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.drawer__body {
  flex: 1;
  padding: 25px;
  overflow-y: auto;
}

.drawer__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

/* Cart Items */
.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-section);
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 4px 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.qty-btn:hover {
  color: var(--accent);
}

.cart-item__qty span {
  min-width: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.cart-item__remove {
  position: absolute;
  top: 15px;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-item__remove:hover {
  color: #ef4444;
}

.drawer__actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast svg {
  color: var(--accent);
}

.drawer__footer {
  padding: 25px;
  border-top: 1px solid var(--line);
  background: var(--bg-section);
}

.drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer__total span {
  color: var(--text-muted);
  font-size: 14px;
}

.drawer__total strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   16. RESPONSIVE UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: inline-flex;
  }

  .hidden-desktop {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   17. ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   18. PAGE HEADER (Subpages)
   ───────────────────────────────────────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 245, 0.95)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-section), transparent);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.page-header__title span {
  color: var(--accent);
}

.page-header__text {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   19. VALUES GRID (Nosotros)
   ───────────────────────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.value-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-card__icon svg {
  transition: transform 0.3s ease;
}

.value-card:hover .value-card__icon svg {
  transform: scale(1.1);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.value-card__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   20. TEAM GRID (Nosotros)
   ───────────────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card__image {
  height: 280px;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__info {
  padding: 25px;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.team-card__role {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card__bio {
  color: var(--text-muted);
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   21. FACILITIES GRID (Nosotros)
   ───────────────────────────────────────────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.facility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.facility-card--large {
  grid-column: span 2;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.facility-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.facility-card__overlay span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-card--large {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   22. CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 245, 0.90)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.cta-card::before {
  display: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
  position: relative;
}

.cta-card h2 span {
  color: var(--accent);
}

.cta-card p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 30px;
  position: relative;
}

.cta-card .btn {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  position: relative;
}

.cta-card .btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   23. SERVICES FULL GRID (Servicios page)
   ───────────────────────────────────────────────────────────────────────────── */
.service-category {
  margin-bottom: 60px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--line);
}

.category-icon {
  font-size: 32px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  transition: transform 0.3s ease;
}

.category-title:hover .category-icon svg {
  transform: scale(1.1);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-full-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-full-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.service-full-card--highlight {
  border-color: var(--accent);
}

.service-full-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-full-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-full-card:hover .service-full-card__image img {
  transform: scale(1.05);
}

.service-full-card__tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-full-card__content {
  padding: 25px;
}

.service-full-card__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-full-card__content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-full-card__features {
  margin-bottom: 20px;
}

.service-full-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.service-full-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.service-full-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.service-full-card__footer .price {
  color: var(--text-muted);
  font-size: 14px;
}

.service-full-card__footer .price strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   24. PRODUCT CATEGORY (Productos page)
   ───────────────────────────────────────────────────────────────────────────── */
.product-category {
  margin-bottom: 60px;
}

.product-category:last-child {
  margin-bottom: 0;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent);
}

.info-card__icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   25. GALLERY MASONRY (Galería page)
   ───────────────────────────────────────────────────────────────────────────── */
.gallery-category {
  margin-bottom: 60px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-masonry__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-masonry__item--tall {
  grid-row: span 2;
}

.gallery-masonry__item--wide {
  grid-column: span 2;
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-masonry__item:hover img {
  transform: scale(1.08);
}

.gallery-masonry__item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-masonry__item:hover figcaption {
  opacity: 1;
}

.gallery-masonry__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.gallery-masonry__desc {
  color: var(--accent);
  font-size: 13px;
}

@media (max-width: 992px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-masonry__item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-masonry__item--tall {
    grid-row: span 1;
  }
}
