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

:root {
  --color-primary:       #8B1A1A;
  --color-primary-dark:  #6B1212;
  --color-primary-light: #A52020;
  --color-primary-pale:  #F9ECEC;
  --color-black:         #1A1A1A;
  --color-gray-dark:     #555555;
  --color-gray-mid:      #888888;
  --color-gray-light:    #D5CCC8;
  --color-cream:         #F5F0EE;
  --color-white:         #FFFFFF;
  --font-heading:        'Playfair Display', Georgia, serif;
  --font-body:           'Lato', sans-serif;
  --radius-sm:           6px;
  --radius-md:           12px;
  --radius-lg:           20px;
  --shadow-card:         0 2px 10px rgba(139, 26, 26, 0.09);
  --shadow-hover:        0 4px 14px rgba(139, 26, 26, 0.14);
  --transition:          transform 200ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 200ms ease-out, background-color 180ms ease, color 150ms ease, border-color 150ms ease, opacity 200ms ease;
  --ease-out-quart:      cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:       cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.7;
  margin: 0;
}

/* =====================
   OVERLAY DE TRANSICIÓN
   ===================== */
#page-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 10000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}

#page-overlay.oculto {
  opacity: 0;
}

h1, h2, h3 {
  text-wrap: balance;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-black);
  line-height: 1.3;
}

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

/* =====================
   HEADER / NAVBAR
   ===================== */
.header {
  background: #FFFCFA;
  border-top: 3px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(26, 8, 8, 0.06);
  transition: box-shadow 280ms ease;
}

.header.header--scrolled {
  box-shadow: 0 4px 16px rgba(26, 8, 8, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 180ms ease;
}

.nav-logo:hover {
  opacity: 0.88;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 0.15rem;
}

.nav a {
  display: block;
  color: var(--color-gray-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.95rem;
  right: 0.95rem;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav a:hover {
  color: var(--color-primary);
  background-color: rgba(139, 26, 26, 0.05);
}

.nav a:hover::after {
  transform: scaleX(0.55);
}

.nav a.active {
  color: var(--color-primary);
  background-color: rgba(139, 26, 26, 0.07);
}

.nav a.active::after {
  transform: scaleX(1);
}

/* =====================
   HERO
   ===================== */
.hero {
  background-color: var(--color-cream);
  background-image: linear-gradient(160deg, rgba(26,26,26,0.55) 0%, rgba(139,26,26,0.38) 100%),
                    url('../img/fondo-hero.png');
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  padding: 140px 2rem 100px;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-icon {
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    transform: translateY(-2px);
  }
}

.btn-ghost:active {
  transform: scale(0.97);
  transition: transform 100ms ease-out;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2.5rem;
  backdrop-filter: blur(8px);
  max-width: 580px;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

/* =====================
   HERO ENTRANCE
   ===================== */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  animation: heroUp 0.6s var(--ease-out-expo) 0ms both;
}

.hero h1 {
  animation: heroUp 0.65s var(--ease-out-expo) 80ms both;
}

.hero p {
  animation: heroUp 0.65s var(--ease-out-expo) 160ms both;
}

.hero-actions {
  animation: heroUp 0.6s var(--ease-out-expo) 240ms both;
}

.hero-stats {
  animation: heroUp 0.6s var(--ease-out-expo) 320ms both;
}

/* =====================
   SERVICE CARDS STAGGER
   ===================== */
.servicios .cards.cards-animate .card {
  animation: heroUp 0.55s var(--ease-out-expo) calc(var(--card-i, 0) * 80ms) both;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary,
button[type="submit"] {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
button[type="submit"]:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-hover);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  button[type="submit"]:hover {
    transform: translateY(-2px);
  }
}

.btn-primary:active,
button[type="submit"]:active {
  transform: scale(0.97);
  transition: transform 100ms ease-out;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  margin-left: 0.75rem;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  transform: translateY(-2px);
}

/* =====================
   SECCIONES ALTERNAS
   ===================== */
section {
  padding: 64px 2rem;
}

section:nth-child(even) {
  background-color: var(--color-cream);
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
}

section h2.section-title {
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-primary);
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--color-primary);
  opacity: 0.45;
  border-radius: 2px;
  margin: 0.7rem auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-mid);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

/* =====================
   SERVICIOS
   ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card,
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-light);
  border-top: 3px solid var(--color-primary);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.card:hover,
.service-card:hover {
  border-color: var(--color-primary-light);
  border-top-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .service-card:hover {
    transform: translateY(-5px);
  }
}

.card:active,
.service-card:active {
  transform: scale(0.98);
  transition: transform 100ms ease-out;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}

.card h3,
.service-card h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.card p,
.service-card p {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================
   CARRUSELES
   ===================== */
.carruseles-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.carrusel {
  flex: 1;
  min-width: 0;
}

.carrusel-titulo {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.carrusel-track-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carrusel-track {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-gray-light);
}

.carrusel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.carrusel-slide.active {
  opacity: 1;
}

.carrusel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carrusel-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.08);
}

.carrusel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carrusel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.carrusel-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carruseles-wrapper {
    flex-direction: column;
  }

  .carrusel {
    width: 100%;
  }
}

/* =====================
   NOSOTROS
   ===================== */
.nosotros {
  text-align: center;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  margin-top: 0.5rem;
}

.nosotros-text p {
  color: var(--color-gray-dark);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.nosotros-text p:last-of-type {
  margin-bottom: 0;
}

.nosotros-cta {
  margin-top: 1.75rem;
  display: inline-block;
}

.nosotros-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.nosotros-stat {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.nosotros-stat:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.nosotros-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.nosotros-stat span {
  color: var(--color-gray-dark);
  font-size: 0.82rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================
   CONTACTO
   ===================== */
.form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-black);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.12);
}

.form-respuesta {
  max-width: 600px;
  margin: 1rem auto 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
}

.form-respuesta.exito {
  background-color: #d4edda;
  color: #155724;
}

.form-respuesta.error {
  background-color: #f8d7da;
  color: #721c24;
}

.whatsapp-cta {
  max-width: 600px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.whatsapp-cta p {
  margin-bottom: 0.75rem;
  color: var(--color-gray-mid);
}

/* =====================
   BOTÓN FLOTANTE WHATSAPP
   ===================== */
@keyframes waPulse {
  0%   { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0   rgba(37, 211, 102, 0.45); }
  60%  { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0   rgba(37, 211, 102, 0);    }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 10001;
  text-decoration: none;
  animation: waPulse 3s var(--ease-out-quart) 2.5s infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    transform: scale(1.08);
  }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: linear-gradient(155deg, #120404 0%, #1E0707 55%, #120404 100%);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #E67E22 55%, var(--color-primary) 100%);
}

.footer .container {
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-logo-link {
  display: inline-block;
  opacity: 0.90;
  transition: opacity 200ms ease;
}

.footer-logo-link:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-heading::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.3rem 0;
  transition: color 180ms ease;
  overflow: hidden;
}

.footer-nav-list a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--color-primary-light);
  border-radius: 1px;
  flex-shrink: 0;
  transition: width 220ms cubic-bezier(0.23, 1, 0.32, 1), margin-right 220ms cubic-bezier(0.23, 1, 0.32, 1);
  margin-right: 0;
}

.footer-nav-list a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-nav-list a:hover::before {
  width: 14px;
  margin-right: 0.5rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #E67E22;
  opacity: 0.90;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-contact-list a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .nosotros-text p {
    text-align: left;
  }

  .nosotros-cta {
    display: block;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header .container {
    flex-direction: column;
    height: auto;
    padding: 0.85rem 1.5rem;
    gap: 0.6rem;
  }

  .nav ul {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

  .nav a::after {
    left: 0.75rem;
    right: 0.75rem;
  }

  .hero {
    padding: 80px 1.5rem 60px;
  }

  .hero-stats {
    gap: 1.25rem;
    padding: 1rem 1.5rem;
  }

  .hero-stat-sep {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .btn-secondary {
    display: none;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* =====================
   REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  button[type="submit"],
  .btn-ghost,
  .card,
  .service-card,
  .nosotros-stat,
  .whatsapp-float,
  .footer-social-link,
  .carrusel-btn {
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  }

  .nav a::after,
  .footer-nav-list a::before {
    transition: none;
  }

  .footer-social-link:hover,
  .nav-logo:hover {
    transform: none;
  }

  .btn-primary:active,
  button[type="submit"]:active,
  .btn-ghost:active,
  .card:active,
  .service-card:active {
    transform: none;
  }

  .hero-badge,
  .hero h1,
  .hero p,
  .hero-actions,
  .hero-stats,
  .servicios .cards.cards-animate .card,
  .whatsapp-float {
    animation: none;
  }
}
