/* ============================================
   POSTA HOSTAL LA TORRE — STYLES
   Paleta: tonos tierra, madera, beige cálido
   Tipografías: Fraunces (display) + Inter (body)
   ============================================ */

:root {
  /* Colores */
  --c-bg: #f6efe6;          /* beige cálido principal */
  --c-bg-soft: #fbf7f1;     /* beige más claro */
  --c-bg-dark: #2a1d14;     /* marrón muy oscuro */
  --c-text: #2a1d14;        /* texto principal */
  --c-text-soft: #6b5848;   /* texto secundario */
  --c-accent: #b8632f;      /* terracota */
  --c-accent-dark: #8f4a1f;
  --c-wood: #c8a880;        /* madera clara */
  --c-wood-dark: #7a5a3c;   /* madera oscura */
  --c-wa: #25d366;          /* whatsapp */
  --c-wa-dark: #128c7e;
  --c-border: rgba(42, 29, 20, 0.12);

  /* Tipos */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(42, 29, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 29, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(42, 29, 20, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selección */
::selection { background: var(--c-accent); color: #fff; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
  background: transparent;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.navbar-custom.scrolled {
  background: rgba(246, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-display);
  color: var(--c-text) !important;
  font-weight: 600;
  font-size: 1.15rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--c-text);
  color: var(--c-bg);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  letter-spacing: -0.5px;
}

.brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}

.navbar-custom .nav-link {
  color: var(--c-text) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.navbar-custom .nav-link:hover::after { transform: scaleX(1); }
.navbar-custom .nav-link:hover { color: var(--c-accent) !important; }

.btn-wa-nav {
  background: var(--c-wa);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.5rem 1.1rem !important;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
  border: none;
}

.btn-wa-nav:hover {
  background: var(--c-wa-dark);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.4rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(20, 12, 6, 0.78) 0%, rgba(20, 12, 6, 0.55) 45%, rgba(20, 12, 6, 0.35) 100%),
    url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(184, 99, 47, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(200, 168, 128, 0.20) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--c-wood);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-wood);
}

.hero-accent {
  color: var(--c-wood);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.2s ease-out 1s forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary-custom {
  background: var(--c-wa);
  color: #fff;
  border: none;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-primary-custom:hover {
  background: var(--c-wa-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.btn-primary-custom i { font-size: 1.2em; }

.btn-lg-custom {
  padding: 1.15rem 2.25rem;
  font-size: 1.1rem;
}

.btn-link-custom {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.3rem;
  transition: all 0.3s;
}

.btn-link-custom:hover {
  color: var(--c-wood);
  border-bottom-color: var(--c-wood);
  gap: 0.8rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--c-wood), transparent);
  background-size: 100% 200%;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.section { padding: 7rem 0; position: relative; }

.section-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-wood-dark);
}

.lead-text {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--c-text);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.body-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-bottom: 2.5rem;
}

/* ============================================
   SOBRE — Stats
   ============================================ */
.section-sobre { background: var(--c-bg); }

.stats {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.stat-item {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--c-accent);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-accent);
  margin-left: 0.1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-top: 0.4rem;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  background: var(--c-border);
}

@media (max-width: 575px) {
  .stat-divider { display: none; }
}

/* ============================================
   SERVICIOS
   ============================================ */
.section-servicios {
  background: var(--c-bg-soft);
  position: relative;
}

.section-servicios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--c-border);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-wood) 0%, var(--c-accent) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

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

.service-card:hover::before { opacity: 0.04; }

.service-card-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--f-display);
  font-size: 4rem;
  color: var(--c-bg);
  font-weight: 600;
  line-height: 1;
  z-index: 0;
  transition: color 0.5s;
}

.service-card:hover .service-card-num { color: var(--c-wood); }

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--c-bg);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.service-card:hover .service-card-icon {
  background: var(--c-accent);
  color: #fff;
  transform: rotate(-6deg);
}

.service-card-title {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.service-card-desc {
  color: var(--c-text-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-features li {
  padding: 0.55rem 0;
  border-top: 1px dashed var(--c-border);
  font-size: 0.92rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li:first-child { border-top: none; }

.service-features i {
  color: var(--c-accent);
  font-weight: 700;
}

/* ============================================
   GALERÍA
   ============================================ */
.section-galeria { background: var(--c-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  display: block;
  background: var(--c-bg-dark);
}

.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(42, 29, 20, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  color: #fff;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
  z-index: 1;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.g-wide { grid-column: span 2; }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.75rem;
  }
  .gallery-item.g-wide,
  .gallery-item.g-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-caption { opacity: 1; transform: none; font-size: 0.95rem; }
  .gallery-item::after { opacity: 0.5; }
}

/* ============================================
   OPINIONES
   ============================================ */
.section-opiniones { background: var(--c-bg-soft); }

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem 2rem;
  height: 100%;
  border: 1px solid var(--c-border);
  transition: all 0.4s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: var(--f-display);
  font-size: 6rem;
  color: var(--c-bg);
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-wood);
}

.stars {
  color: #e6a23c;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-wood) 0%, var(--c-accent) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-text);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--c-text-soft);
}

/* ============================================
   UBICACIÓN
   ============================================ */
.section-ubicacion { background: var(--c-bg); }

.location-info {
  background: var(--c-bg-dark);
  color: var(--c-bg);
  padding: 2.75rem 2.25rem;
  border-radius: 24px;
  height: 100%;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-item:last-of-type { border-bottom: none; }
.location-item:first-of-type { padding-top: 0; }

.location-item i {
  color: var(--c-wood);
  font-size: 1.35rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.location-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.location-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(246, 239, 230, 0.75);
  line-height: 1.5;
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1px solid var(--c-wood);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-size: 0.92rem;
}

.btn-outline-custom:hover {
  background: var(--c-wood);
  color: var(--c-bg-dark);
  border-color: var(--c-wood);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.map-wrapper iframe {
  display: block;
  filter: saturate(0.85) hue-rotate(-6deg);
  transition: filter 0.4s;
}

.map-wrapper:hover iframe { filter: saturate(1) hue-rotate(0); }

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta {
  background: var(--c-bg-soft);
  padding: 5rem 0;
}

.cta-box {
  background: var(--c-bg-dark);
  border-radius: 32px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 99, 47, 0.25) 0%, transparent 60%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 168, 128, 0.20) 0%, transparent 60%);
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box .section-eyebrow { color: var(--c-wood); }

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-title em {
  font-style: italic;
  color: var(--c-wood);
  font-weight: 400;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(246, 239, 230, 0.8);
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-bg-dark);
  color: rgba(246, 239, 230, 0.7);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

.footer-brand .brand-mark {
  background: var(--c-wood);
  color: var(--c-bg-dark);
}

.footer-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-wood);
}

.footer-text { line-height: 1.6; }

.footer-title {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: rgba(246, 239, 230, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--c-wood); }

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.25rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  margin: 0;
  color: rgba(246, 239, 230, 0.5);
}

/* ============================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--c-wa);
  color: #fff;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-float i {
  font-size: 1.5rem;
  line-height: 1;
}

.wa-float:hover {
  background: var(--c-wa-dark);
  color: #fff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--c-wa);
  z-index: -1;
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 575px) {
  .wa-float {
    bottom: 1.1rem;
    right: 1.1rem;
    padding: 0.85rem 1.15rem;
    font-size: 0.92rem;
  }
  .wa-float-text { display: none; }
  .wa-float i { font-size: 1.45rem; }
  .wa-float { padding: 1rem; }
}

/* ============================================
   RESPONSIVE GENERAL
   ============================================ */
@media (max-width: 991px) {
  .section { padding: 5rem 0; }

  .navbar-custom {
    background: rgba(246, 239, 230, 0.96);
    backdrop-filter: blur(10px);
  }

  .navbar-custom .nav-link {
    padding: 0.75rem 0 !important;
  }

  .btn-wa-nav { margin-top: 0.75rem; }

  .hero-bg { background-attachment: scroll; }
}

@media (max-width: 575px) {
  .section { padding: 4rem 0; }
  .service-card { padding: 2.25rem 1.75rem; }
  .location-info { padding: 2rem 1.5rem; }
  .hero-cta { gap: 1rem; flex-direction: column; align-items: flex-start; }
  .btn-primary-custom { width: 100%; justify-content: center; }
}

/* Reduce motion accesibilidad */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
}
