/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e0e0e0 100%);
  color: #2c2c2c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
}

/* VARIABLES */
:root {
  --rojo: #c62828;
  --rojo-oscuro: #8b1e1e;
  --rojo-claro: #e53935;
  --gris-plateado: #c0c0c0;
  --gris-plateado-oscuro: #a8a8a8;
  --gris-claro: #e8e8e8;
  --blanco: #ffffff;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  border-bottom: 4px solid var(--rojo);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(198, 40, 40, 0.8));
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(198, 40, 40, 1));
}

.nav-links a {
  color: #e8e8e8;
  margin: 0 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #c62828;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--rojo-claro);
}

.nav-links a:hover::after {
  width: 100%;
}

/* MENÚ */
.nav-center {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-center a {
  color: #e8e8e8;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* BOTÓN WP */
.nav-whatsapp {
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}

.nav-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.nav-cta {
  background: none;
  color: #c62828;
  font-weight: 600;
  padding: 6px 10px;
}

.nav-cta img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(82%) saturate(3199%) hue-rotate(345deg) brightness(84%) contrast(96%);
}

.nav-cta:hover {
  background: var(--rojo);
  color: white;
}

.nav-cta:hover img {
  filter: brightness(0) invert(1);
}

/* ================= HERO ================= */

/* ================= HERO ================= */

.hero {
  min-height: calc(100vh - 100px);
  margin-top: 100px;
  background-image: url("https://image2url.com/images/1766205094894-6e0c4786-f2bb-4dc2-a079-534a8b25f08d.jpeg");
  background-position: center;
  background-size: cover;
  filter: contrast(1.05) brightness(1.2);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}

.hero {
  overflow: hidden;
}

/* Overlay translúcido oscuro */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.1) 100%  
  )
}

/* Línea inferior decorativa */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--rojo) 30%, var(--rojo) 70%, transparent);
  z-index: 1;
}

.hero-description {
  margin-top: 14px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.hero-impact {
  position: relative;
  z-index: 2;

  max-width: 600px;
  padding: 40px 48px;

  /* Fondo oscuro SOLO del cartel */
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);

  border-radius: 14px;

  color: #ffffff;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease-out forwards;
  
}



.hero-impact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--rojo),
    transparent
  );
  border-radius: 0 0 12px 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-impact h1 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #ffffff;
  text-transform: none; /* minusculas naturales */
}

.hero-impact p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}


/* ================= TÍTULO GRANDE IZQUIERDA (MÁS SOBRIO) ================= */

.hero-big-title h2 {
  font-size: 38px;
  letter-spacing: 2px;
  font-weight: 700;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;

  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 30px;
  max-width: 480px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-big-title h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  
  color: #ffffff;
  text-shadow: 
    2px 2px 8px rgba(0,0,0,0.7),
    0 0 20px rgba(0,0,0,0.4);
}

.hero-big-title .subtitle {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 12px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  opacity: 0.9;
}

.hero-big-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--rojo);
  margin-top: 16px;
  animation: expandLine 1s ease-out forwards;
  animation-delay: 0.8s;
  transform-origin: left;
  transform: scaleX(0);
}

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

.hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center; 
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-buttons a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  height: 52px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
 
}

.hero .btn-whatsapp {
  background-color: #1f8f4d; /* verde más sobrio */
  color: #f5f5f5;           /* blanco suave, no puro */
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(31, 143, 77, 0.35);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
  background-color: #1b7f44; /* apenas más oscuro */
  box-shadow: 0 6px 16px rgba(31, 143, 77, 0.45);
}



.btn-whatsapp .icon-wp {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-wp {
  background: linear-gradient(135deg, #c62828, #9e1b1b);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(198, 40, 40, 0.3);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
  transition: all 0.3s ease;
}

.btn-wp:hover {
  background: linear-gradient(135deg, #ff2e2e, #c62828);
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.45);
  border-color: var(--rojo);
}

.hero-content {
  transform: none !important;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.hero-content:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}


.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #c62828;
  border-radius: 10px 0 0 10px;
}

.hero-content h1 {
  color: #111;
  font-weight: 800;
}

.hero-content p {
  color: #444;
  font-size: 17px;
}

.btn-primary {
  background-color: #22d765; /* verde WhatsApp */
  color: #ffffff;

  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.4px;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background-color: #1eba5c; /* WP hover */
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.45);
}

.btn-primary img {
  width: 20px;
  height: 20px;
}


.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: #222;
  background: rgba(255,255,255,0.65);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* ================= BOTONES FLOTANTES ================= */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid rgba(255,255,255,0.3);
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.floating-btn img {
  width: 26px;
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.instagram {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

@media (max-width: 768px) {
  .hero {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ================= CONTENIDO ================= */

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  color: #1a1a1a;
}

p, span, li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
}

a, .contact-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--rojo);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover, .contact-link:hover {
  color: var(--blanco);
  background: var(--rojo);
  border-radius: 5px;
}


/* ================= SERVICIOS ================= */

/* ================= SERVICIOS ================= */

.services {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 50%, #c8c8c8 100%);
  padding: 60px 40px;
  border-radius: 12px;
  position: relative;
}
/* TÍTULO igual a Contacto */
#servicios h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #8b1e1e;
}

/* SUBTÍTULO igual a contact-intro */
#servicios .services-intro {
  font-size: 1.05rem;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #3a3a3a;
  line-height: 1.6;
}


.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--rojo), transparent);
}

.servicios-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.servicio-card {
  position: relative;
  min-height: 220px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid var(--gris-plateado);
  display: flex;
  align-items: center;
}

.servicio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.25);
  z-index: 1;
  pointer-events: none;
}

.servicio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(198, 40, 40, 0.5);
  border-color: var(--rojo);
}

/* Imagen de fondo del servicio */
.servicio-imagen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.servicio-imagen-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(110, 110, 110, 0.2),
      rgba(80, 80, 80, 0.35)
    );
}


/* Contenedor del texto */
.servicio-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.85) 0%,
    rgba(232, 232, 232, 0.75) 100%
  );
  width: 100%;
  padding: 30px;
  transition: background 0.4s ease;
}

.servicio-card:hover .servicio-body {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 245, 0.92) 100%
  );
}

/* Título */
.servicio-titulo {
  color: var(--rojo-oscuro);
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

/* Descripción */
.servicio-descripcion {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

/* Botón CTA */
.servicio-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--rojo), var(--rojo-oscuro));
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.servicio-cta:hover {
  background: linear-gradient(135deg, var(--rojo-claro), var(--rojo));
  transform: translateX(5px);
  border-color: var(--rojo-oscuro);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}

/* ================= SOBRE NOSOTROS ================= */

#sobre {
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 50%, #c8c8c8 100%);
  padding: 80px 20px;
  position: relative;
}

#sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--rojo), transparent);
}

.about-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--rojo-oscuro);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.stat-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  padding: 25px;
  border-left: 4px solid var(--rojo);
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.3);
}

.stat-box span {
  font-size: 34px;
  font-weight: bold;
  color: var(--rojo);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-box p {
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 600;
}

/* ================= CARRUSEL ================= */

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 20px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.photo-box {
  flex: 0 0 auto;
  width: 190px;
  height: 190px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.3);
  transition: all 0.3s ease;
  border: 3px solid var(--gris-plateado);
}

.photo-box:hover {
  transform: scale(1.08);
  border-color: var(--rojo);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.5);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gris-plateado) 0%, var(--gris-plateado-oscuro) 100%);
  color: var(--rojo);
  border: 3px solid var(--rojo);
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ================= CONTACTO ================= */

.contact-section {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(192, 192, 192, 0.95) 0%, rgba(232, 232, 232, 0.95) 100%),
    url('https://image2url.com/images/1766155219532-a0b46ab7-7919-4eb6-974c-0f584279ac0d.png') center/cover no-repeat;
  padding: 80px 20px;
  color: #1a1a1a;
  text-align: center;
  overflow: hidden;
}

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

.contact-section .overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.8) 0%, rgba(232, 232, 232, 0.9) 100%);
  z-index: 0;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1150px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--rojo-oscuro);
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.contact-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  color: #3a3a3a;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 12px;
  padding: 25px;
  border: 3px solid var(--gris-plateado);
  display: inline-block;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.2);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.4);
  border-color: var(--rojo);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.contact-card h3 {
  margin-bottom: 22px;
  font-size: 1.3rem;
  color: var(--rojo-oscuro);
}

.contact-link {
  display: block;
  margin-bottom: 14px;
  color: var(--rojo);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
  padding: 8px 14px;
  border-radius: 5px;
  transform: translateX(4px);
}

.contact-text {
  margin-bottom: 14px;
  color: #3a3a3a;
  font-size: 1rem;
  font-weight: 500;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--rojo);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ================= FOOTER ================= */

footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--gris-plateado);
  padding: 20px;
  text-align: center;
  margin-top: 0;
  border-top: 4px solid var(--rojo);
  box-shadow: 0 -4px 12px rgba(198, 40, 40, 0.3);
}

/* ================= ANIMACIONES ================= */

html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animaciones escalonadas para servicios */
.servicio-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.servicio-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay para cada tarjeta */
.servicio-card:nth-child(1).show { transition-delay: 0.1s; }
.servicio-card:nth-child(2).show { transition-delay: 0.2s; }
.servicio-card:nth-child(3).show { transition-delay: 0.3s; }
.servicio-card:nth-child(4).show { transition-delay: 0.4s; }
.servicio-card:nth-child(5).show { transition-delay: 0.5s; }
.servicio-card:nth-child(6).show { transition-delay: 0.6s; }

/* ================= DESTACADOS ================= */

.highlight {
  color: var(--rojo);
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 15px;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .map-container {
    height: 300px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }
}

.hero-buttons a,
.btn-primary,
.btn-secondary,
.btn-wp,
.btn-whatsapp {

  padding: 14px 28px;
  height: 52px;
    border-radius: 0 !important;
}
