/* ============================================================
   DUNAS DE ORO — CSS MEJORADO
   Paleta oficial: #00a69e (teal) · #c6972e (dorado)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --teal:        #00a69e;
  --teal-dark:   #007d77;
  --teal-light:  #00c4bb;
  --gold:        #c6972e;
  --gold-light:  #f0d070;
  --gold-pale:   #fdf3d8;
  --gold-dark:   #9a7020;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --text-dark:   #1a1a1a;
  --text-mid:    #3a3a3a;
  --text-light:  #7a7a7a;
  --shadow-gold: 0 8px 32px rgba(198,151,46,0.25);
  --shadow-teal: 0 8px 32px rgba(0,166,158,0.25);
  --font-display: 'Cinzel', serif;
  --font-body:    'Raleway', sans-serif;
}

/* ── RESET / BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── ANIMACIONES GLOBALES ──────────────────────────────── */
@keyframes shimmerGold {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes borderGlow {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,151,46,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(198,151,46,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes starGlow {
  0%, 100% { color: #f0d070; transform: scale(1); }
  50%       { color: #ffe066; text-shadow: 0 0 14px rgba(240,208,112,0.9); transform: scale(1.18); }
}
@keyframes slideUp {
  from { transform: translateY(50px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes btnShine {
  0%   { left: -75%; opacity: 0; }
  30%  { opacity: 1; }
  60%  { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}
@keyframes panelShine {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  55%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
@keyframes lineSweep {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes auraPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes circlePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(198,151,46,0.2), 0 0 18px rgba(198,151,46,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(198,151,46,0.35), 0 0 28px rgba(198,151,46,0.45); }
}
@keyframes rotatePulse {
  0%, 90%, 100% { box-shadow: 0 0 8px rgba(198,151,46,0.4); }
  95%            { box-shadow: 0 0 20px rgba(240,208,112,0.9); transform: rotate(15deg); }
}
@keyframes cardShine {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* ==============================
   HEADER
============================== */
.main-header {
  width: 100%;
  box-shadow: var(--shadow-light);
  z-index: 1000;
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
}

.header-superior {
  width: 100%;
  height: 25px;
  background: #00a69e;
}

.header-inferior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg, 
    #c9a961 0%,
    #f4e5b8 20%,
    #ffffff 40%,
    #f4e5b8 60%,
    #d4af37 80%,
    #b8941f 100%
  );
  background-size: 200% auto;
  animation: shimmer 5s ease-in-out infinite;
  padding: 0 50px; 
  height: 60px; 
  position: relative;
  z-index: 10;
}

@keyframes shimmer {
  0%, 100% { background-position: left center; }
  50%       { background-position: right center; }
}

.logo-container {
  position: relative;
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -75px;
  z-index: 5;
}

.logo-content {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-33%);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-image {
  height: 380px;
  object-fit: contain;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.navbar li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar li a:hover {
  color: #00A9B4;
  background: rgba(0, 170, 162, 0.08);
}

.navbar li a:hover::after {
  width: 60%;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::before {
  font-size: 0.8rem;
  transition: all 0.3s ease;
  order: 2;
}

.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* ===== SUBMENU ===== */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.1s ease;
  list-style: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  width: 100%;
  margin: 0;
}

.submenu a {
  display: block;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s ease;
  border-left: 3px solid #d4af37;
  position: relative;
  background: #f8f8f8;
  color: #d4af37;
  margin-bottom: 4px;
}

.submenu a::before {
  content: '→';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-size: 1.2rem;
  color: #00A9B4;
  opacity: 0;
  transition: all 0.3s ease;
}

.submenu a:hover {
  background: linear-gradient(
    135deg,
    #c9a961 0%,
    #f4e5b8 20%,
    #ffffff 40%,
    #f4e5b8 60%,
    #d4af37 80%,
    #b8941f 100%
  );
  background-size: 200% auto;
  animation: shimmer 5s ease-in-out infinite;
  padding-left: 45px;
  border-left-color: #b8941f;
  color: #5d4a1b;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}

.submenu a:hover::before {
  opacity: 1;
  color: #5d4a1b;
  transform: translateY(-50%) translateX(0);
}

.submenu a::after {
  display: none !important;
}

.submenu li:first-child a:hover {
  background: linear-gradient(135deg, #ffcc33 0%, #fffacd 25%, #ffffff 50%, #fffacd 75%, #ffcc33 100%);
  background-size: 200% auto;
  box-shadow: 0 6px 25px rgba(255, 204, 51, 0.5);
}

.submenu li:nth-child(2) a:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f0d78c 25%, #fff8e7 50%, #f0d78c 75%, #c9a961 100%);
  background-size: 200% auto;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

/* ===== BOTÓN DE CONTACTO ===== */
.btn-contact {
  background: #00a69e;
  color: white !important;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,166,158,0.5);
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: skewX(-15deg);
  animation: btnShine 3.5s ease-in-out infinite;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px #02777fa1;
}

.btn-contact::after {
  display: none !important;
}

/* ===== MENÚ MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.menu-toggle::before { content: "☰"; }
.menu-toggle.open::before { content: "✖"; }

/* ── Menú móvil toggle ── */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: transparent;
  border: none;
}
.menu-toggle::before { content: "☰"; }
.menu-toggle.open::before { content: "✖"; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  margin-top: 72px;
  overflow: hidden;
}
.hero-fondo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Overlay dorado suave sobre hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.18) 0%,
    rgba(198,151,46,0.08) 50%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: 0.5rem;
}

/* ── Stats banner ── */
.stats-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 14px 10px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.stats-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(198,151,46,0.15), transparent);
  animation: btnShine 4s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s ease both;
}
.about-section .content {
  flex: 1;
  text-align: center;
}
.about-section img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid rgba(198,151,46,0.25);
}
.about-section img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(198,151,46,0.4);
}

.content p {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 30px;
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(0,166,158,0.3);
}

/* ── Título de sección ── */
.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--gold-light);
  padding: 28px 40px;
  width: 72%;
  margin: 24px auto;
  border-radius: 12px;
  border: 1px solid rgba(198,151,46,0.35);
  box-shadow: 0 8px 28px rgba(0,166,158,0.2);
}
.section-title::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btnShine 4s ease-in-out infinite;
}

/* ── Variantes de títulos ── */
.section-text {
  background: var(--white);
  padding: 8px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: 10px;
  width: 60%;
  margin: 1rem auto 2rem;
  color: var(--teal);
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--gold);
}
.section-titulo {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 2rem;
  color: var(--teal);
  margin-top: 4rem;
  letter-spacing: 0.04em;
}
.section-texto {
  font-family: var(--font-display);
  display: block;
  text-align: center;
  width: auto;
  max-width: 90%;
  margin: 1rem auto 2rem;
  padding: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 4s linear infinite;
}

@media (min-width: 768px) {
  .about-section { flex-direction: row; text-align: left; }
  .about-section .content { text-align: left; }
}

/* ══════════════════════════════════════════════════════════
   CARDS — UBICACIONES CERCANAS
══════════════════════════════════════════════════════════ */
.service {
  background: linear-gradient(160deg, #062e2c 0%, #0a3d39 40%, #0d4743 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(198,151,46,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(0,196,187,0.08) 0%, transparent 50%);
  animation: auraPulse 6s ease-in-out infinite;
  pointer-events: none;
}
/* Línea dorada superior */
.service::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
}
.service .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 4s linear infinite;
}

/* ── Carousel ── */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scroll 35s linear infinite;
  width: fit-content;
}
.carousel-track:hover { animation-play-state: paused; }

/* ── Card ── */
.card {
  position: relative;
  width: 360px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  border: 1px solid rgba(198,151,46,0.2);
}
.card::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(240,208,112,0.38) 50%, transparent 80%);
  transform: skewX(-15deg);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}
.card:hover::after {
  opacity: 1;
  animation: cardShine 0.65s ease forwards;
}
.card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.65),
    0 0 0 1.5px rgba(198,151,46,0.7),
    0 0 30px rgba(198,151,46,0.3);
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.82) saturate(1.1);
}
.card:hover .card-image {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}
.card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,30,25,0.98) 0%, rgba(6,30,25,0.85) 50%, transparent 100%);
  padding: 1.5rem;
  z-index: 3;
}
.card-title {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.card-location {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════ */
.modal {
  display: none !important;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.modal.active { display: flex !important; }

.modal-content {
  background: linear-gradient(135deg, #0b2822 0%, #133b34 50%, #0b2822 100%);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(198,151,46,0.35);
  animation: slideUp 0.4s ease;
  margin: auto;
  border: 1px solid rgba(198,151,46,0.3);
}
.modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
  z-index: 2;
}
.modal-image {
  width: 45%;
  flex-shrink: 0;
  min-height: 400px;
  position: relative;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(198,151,46,0.5);
  animation: rotatePulse 4s ease-in-out infinite;
}
.modal-close:hover {
  animation: none;
  background: var(--white);
  color: var(--gold-dark);
  transform: rotate(90deg) scale(1.1);
}
.icon-location {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════════ */
.services {
  padding: 80px 20px;
  text-align: center;
  background: var(--off-white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
}

.services-container h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--teal-dark);
  position: relative;
  display: inline-block;
}
.services-container h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
  border-radius: 2px;
}
.services-container h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--gold-dark);
}
.services-container p {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 50px;
  color: var(--text-mid);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 2.5rem;
}

.service-item-1 {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  width: 190px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: var(--teal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,151,46,0.12);
}
.service-item-1::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.service-item-1:hover::before {
  transform: scaleX(1);
  animation: lineSweep 2s linear infinite;
}
.service-item-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(198,151,46,0.2), 0 0 0 1px rgba(198,151,46,0.25);
}
/* Destello al hover */
.service-item-1::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(198,151,46,0.12) 50%, transparent 80%);
  transform: skewX(-15deg);
  opacity: 0;
  transition: none;
}
.service-item-1:hover::after {
  animation: cardShine 0.6s ease forwards;
  opacity: 1;
}

.service-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid rgba(198,151,46,0.2);
}
.service-item-1:hover .service-circle {
  border-color: rgba(198,151,46,0.6);
  animation: circlePulse 1.5s ease-in-out infinite;
}
.service-circle.img1 { background-image: url("../../../img/Dunas de oro/thunder.png"); }
.service-circle.img2 { background-image: url("../../../img/Dunas de oro/drop.png"); }
.service-circle.img3 { background-image: url("../../../img/Dunas de oro/drain.png"); }
.service-circle.img4 { background-image: url("../../../img/Dunas de oro/road.png"); }
.service-circle.img5 { background-image: url("../../../img/Dunas de oro/Vereda.png"); }
.service-circle.img6 { background-image: url("../../../img/Dunas de oro/tree.png"); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(160deg, #062e2c 0%, #0a4540 40%, #062e2c 100%);
  margin-top: 4rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
/* Patrón decorativo sutil */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
  z-index: 2;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(198,151,46,0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(0,196,187,0.06) 0%, transparent 45%);
  pointer-events: none;
}

.testimonials-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.image-container {
  flex: 1;
  max-width: 40%;
  display: flex;
  align-items: center;
}
.image-container img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  min-height: 350px;
  border-radius: 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 2px rgba(198,151,46,0.3);
  object-fit: cover;
  object-position: center;
  transition: box-shadow 0.3s ease;
}
.image-container img:hover {
  box-shadow: 0 16px 52px rgba(0,0,0,0.5), 0 0 0 2px rgba(198,151,46,0.6);
}

.testimonials-content {
  flex: 1;
  max-width: 55%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: linear-gradient(145deg, var(--white), #fdfaf4);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(198,151,46,0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 3px solid var(--gold);
  animation: scaleIn 0.7s ease both;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 16px;
  font-size: 110px;
  color: rgba(198,151,46,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.rating { margin-bottom: 1rem; }
.star {
  color: var(--gold-light);
  font-size: 1.4rem;
  display: inline-block;
  animation: starGlow 2.5s ease-in-out infinite;
}
.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

.testimonial-block {
  font-style: italic;
  color: var(--text-mid);
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}
.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(198,151,46,0.3);
}
.testimonial-footer span {
  color: var(--text-light);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-footer span:first-child {
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 3s linear infinite;
}
.visit-date { color: var(--text-light) !important; font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   GALERIA
══════════════════════════════════════════════════════════ */

  h1 {
            text-align: center;
            margin-top: 6rem;
            color: #00AAA2;
            margin-bottom: 40px;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 2.2rem;
            padding: 0 20px;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto 60px auto;
            padding: 0 20px;
        }

        .gallery img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            object-position: center;
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
            display: block;
        }

        .gallery img:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
            box-shadow: 0 10px 25px rgba(0,170,162,0.4);
        }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 10000;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 85%;
            border-radius: 15px;
            box-shadow: 0 0 40px rgba(0,170,162,0.6);
            animation: zoomIn 0.3s ease;
            object-fit: contain;
        }

        @keyframes zoomIn {
            from { 
                transform: scale(0.8); 
                opacity: 0; 
            }
            to { 
                transform: scale(1); 
                opacity: 1; 
            }
        }

        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            pointer-events: none;
        }

        .controls .btn {
            pointer-events: auto;
        }

        .btn {
            background: rgba(0,170,162,0.8);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 10px 18px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .btn:hover {
            background: #38b6b0;
            transform: scale(1.1);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2.5rem;
            color: #f3f3f3;
            cursor: pointer;
            background: rgba(0,0,0,0.6);
            border-radius: 50%;
            padding: 5px 15px;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .close-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }

/* ══════════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 20px;
  background: var(--white);
  margin-top: 4rem;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 3s linear infinite;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.contact-header .highlight { color: var(--teal); }
.contact-header .brand {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  padding: 4px 14px;
  border-radius: 8px;
  animation: shimmerGold 4s linear infinite;
}
.contact-description {
  margin-top: 15px;
  font-size: 1.05rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: var(--text-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.contact-details {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow-teal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,151,46,0.3);
}
.contact-details::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(240,208,112,0.1) 50%, transparent 80%);
  transform: skewX(-15deg);
  animation: panelShine 5s ease-in-out infinite;
  pointer-events: none;
}
.contact-details h3 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}
.contact-item i {
  font-size: 1.2rem;
  color: var(--gold-light);
}
.contact-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold-light); }
.contact-item p { color: var(--white); margin: 0; }

.social-links { margin-top: 22px; }
.social-links h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-4px);
  color: var(--gold-light);
}

.map-container h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}
.map-container iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  border: 2px solid rgba(198,151,46,0.2);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.main-footer {
  background: #00A69E;
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 180px;
  position: relative;
}
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: borderGlow 4s linear infinite;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(198,151,46,0.2);
}
.footer-column { flex: 1; min-width: 200px; padding: 10px 0; }
.branding-column { min-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(198,151,46,0.3));
}
.slogan {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-top: -4px;
  margin-bottom: 20px;
}
.contact-info p {
  margin: 8px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-icon-img {
  width: 17px; height: 17px;
  object-fit: contain;
  margin-top: 2px;
  filter: brightness(0) invert(0.85);
}

.footer-column h3 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
  position: relative;
}
.footer-column h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 8px;
  border-radius: 2px;
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.footer-column ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-column .social-icons a { color: rgba(255,255,255,0.8); }
.footer-column .social-icons a:hover { color: var(--gold-light); }
.social-icon-img {
  width: 22px; height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(0.85);
  transition: filter 0.3s ease;
}
.social-icons a:hover .social-icon-img { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg); }

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  padding-top: 22px;
}

/* ══════════════════════════════════════════════════════════
   LODGING GRID
══════════════════════════════════════════════════════════ */
.lodging-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 30px;
}
.lodging-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  border: 1px solid rgba(198,151,46,0.12);
}
.lodging-card:hover { transform: translateY(-10px); }
.lodging-card img { width: 100%; height: 250px; object-fit: cover; }
.lodging-card-content { padding: 1.5rem; }
.lodging-card-content h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--teal); margin: 0 0 0.5rem; }
.lodging-card-content p { margin: 0 0 1rem; color: var(--text-mid); }
@media (min-width: 768px) { .lodging-grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { overflow-x: hidden; width: 100%; }
  .container { padding: 0 1rem; max-width: 100%; }

  .header-inferior { padding: 0 20px; height: 60px; }
  .logo-container, .logo-content, .logo-image { display: none !important; }

  .menu-toggle { display: block; font-size: 1.8rem; cursor: pointer; color: var(--text-color); }

  .nav-links {
    position: fixed;
    top: 85px; left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    background: white;
    flex-direction: column;
    padding: 30px 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    z-index: 999;
  }
  .nav-links.active { transform: translateX(0); }

  .navbar ul { flex-direction: column; width: 100%; gap: 10px; padding: 0; margin: 0; }
  .navbar li { width: 100%; }
  .navbar li a {
    width: auto;
    margin: 0 20px;
    padding: 16px 20px;
    font-size: 1.05rem;
    color: #333;
    display: block;
    box-sizing: border-box;
    text-align: left;
    border-radius: 8px;
  }

  .dropdown.active > .dropdown-toggle {
    background-color: rgba(0, 92, 153, 0.08);
    color: #068b95;
    font-weight: 700;
    position: relative;
    margin-bottom: 5px;
  }
  .dropdown.active > .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 40px;
    width: 30px;
    height: 2px;
    background: #068b95;
  }

  .submenu {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 !important;
    margin-top: 8px;
    display: block;
    border: none !important;
    pointer-events: auto !important;
  }
  .dropdown.active .submenu { max-height: 500px; padding: 8px 0 !important; opacity: 1 !important; visibility: visible !important; }

  .submenu li { margin: 8px 0 !important; border-radius: 0; overflow: hidden; width: 90%; pointer-events: auto !important; }
  .submenu a {
    background: #f8f8f8 !important;
    color: #d4af37 !important;
    padding: 14px 20px !important;
    text-align: center !important;
    font-weight: 700;
    border-radius: 10px !important;
    border-left: 3px solid #d4af37 !important;
    display: block;
    pointer-events: auto !important;
  }
  .submenu a::before, .submenu a::after { display: none !important; }
  .submenu a:active, .submenu a:focus {
    background: linear-gradient(135deg, #c9a961 0%, #f4e5b8 25%, #ffffff 50%, #f4e5b8 75%, #d4af37 100%) !important;
    background-size: 200% auto !important;
    color: #5d4a1b !important;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4) !important;
  }

  .btn-contact {
    margin: 20px 0 0 0 !important;
    padding: 14px 0 !important;
    background: #00A9B4 !important;
    color: white !important;
    border-radius: 10px;
    width: 80% !important;
    display: block !important;
    text-align: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    box-sizing: border-box;
  }

  .hero { height: 56vh; margin-top: 60px; }

  .about-section { padding: 2rem 1rem; margin-top: 2rem; }
  .section-title { font-size: 1.5rem; padding: 14px; width: 90%; }

  .service { padding: 2rem 0; }
  .service h1 { font-size: 1.4rem; padding: 10px 15px; }
  .carousel-container { padding: 1.5rem 0 1.5rem 15px; }
  .card { width: 260px; height: 340px; }

  .modal { padding: 0; align-items: center; justify-content: center; }
  .modal-content { flex-direction: column; max-width: 88%; width: 88%; max-height: 78vh; border-radius: 16px; }
  .modal-image { width: 100%; height: 190px; min-height: 190px; max-height: 190px; }
  .modal-info { padding: 1.4rem; overflow-y: auto; max-height: calc(78vh - 190px); }
  .modal-title { font-size: 1.2rem; }
  .modal-close { width: 38px; height: 38px; font-size: 1.3rem; top: 10px; right: 10px; }

  .testimonials-section { padding: 2.5rem 0; }
  .testimonials-wrapper { flex-direction: column; padding: 0 15px; }
  .image-container { max-width: 100%; }
  .image-container img { aspect-ratio: 3/4; max-height: 380px; min-height: auto; }
  .testimonials-content { max-width: 100%; }
  .testimonial-card { padding: 1.8rem 1.4rem; }

  .services { padding: 2.5rem 15px; }
  .services-container h2 { font-size: 1.8rem; }
  .service-item-1 { width: 100%; max-width: 100%; padding: 22px; }

  .contact-section { padding: 50px 15px; }
  .contact-header h2 { font-size: 1.4rem; }
  .map-container iframe { height: 270px; }

  .main-footer { padding: 40px 15px 20px; margin-top: 100px; }
  .footer-container { gap: 28px; }
  .footer-column { min-width: 100%; text-align: center; }
  .branding-column { min-width: 100%; }
  .footer-logo { justify-content: center; }
  .footer-column h3::after { margin-left: auto; margin-right: auto; }
  .contact-info p { justify-content: center; }
  .social-icons { justify-content: center; }

  /* ── GALERÍA ── */
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
    margin-bottom: 40px !important;
  }
  .gallery img {
    height: 200px !important;
  }
  h1 {
    font-size: 1.6rem !important;
    margin-top: 3rem !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  /* ── HERO ── */
  .hero {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    margin-top: 85px;
    padding: 0;
    overflow: hidden;
  }
  .hero-fondo {
    position: relative !important;
    object-fit: fill !important;
    width: 100% !important;
    height: auto !important;
    top: unset !important;
    left: unset !important;
  }
  .stats-banner { display: none !important; }

  /* ── OTRAS ── */
  .section-title { font-size: 1.3rem; }
  .card { width: 240px; height: 310px; }
  .modal-content { max-width: 93%; width: 93%; max-height: 72vh; }
  .modal-image { height: 165px; min-height: 165px; max-height: 165px; }
  .modal-info { max-height: calc(72vh - 165px); }

  /* ── GALERÍA ── */
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }
  .gallery img {
    height: 160px !important;
  }
  h1 {
    font-size: 1.4rem !important;
    margin-top: 2.5rem !important;
  }
}

/* ===== REDES SOCIALES FLOTANTES ===== */
.redes a {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 100;
  transition: all 0.4s ease;
  opacity: 0.95;
}

.whatsapp-float {
  background-color: #25d366;
  bottom: 40px;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.facebook-float,
.instagram-float,
.tiktok-float {
  background-color: transparent;
  bottom: 40px;
  opacity: 0;
  pointer-events: none;
}

.redes:hover .facebook-float {
  bottom: 110px;
  opacity: 1;
  pointer-events: auto;
}

.redes:hover .instagram-float {
  bottom: 180px;
  opacity: 1;
  pointer-events: auto;
}

.redes:hover .tiktok-float {
  bottom: 250px;
  opacity: 1;
  pointer-events: auto;
}

.facebook-float img {
  width: 65px;
  height: 65px;
}

.instagram-float img {
  width: 90px;
  height: 70px;
}

.tiktok-float img {
  width: 85px;
  height: 65px;
}

.redes a:hover {
  transform: scale(1.1);
}