:root {
  --primary: #1fc8c9;
  --dark: #172e44;
  --bg: #f9f6f6;
  --radius: 16px;
  --shadow: 0 8px 25px rgba(23, 46, 68, 0.08);
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.logo-img {
  width: 110px;
  height: auto;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: var(--primary);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #18a9aa;
}
/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('../img/fondo.jpg') center right / cover no-repeat;
  color: white;
  padding: 80px 0 0;
  overflow: hidden;
}

/* 🔹 Sombreado azul celeste degradado (claro arriba → oscuro abajo) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(45, 180, 220, 0.35),   /* azul celeste claro arriba */
    rgba(15, 60, 100, 0.75)     /* azul más oscuro abajo */
  );
  z-index: 0;
}

/* 🔹 Sombra difusa inferior */
.hero::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -18px;
  height: 1px;
  box-shadow: 0 26px 40px rgba(15, 36, 54, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* 🔹 Asegura que el contenido quede por encima del sombreado */
.hero * {
  position: relative;
  z-index: 2;
}
.hero-panel { background: transparent; box-shadow: none; border: 0; color: #fff; }
.hero-panel img { border: none; box-shadow: none; border-radius: 12px; }
.hero-figure { background: none; padding: 0; border-radius: 0; box-shadow: none; transform: none; display: inline-block; }
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,36,54,0.82) 0%, rgba(15,36,54,0.48) 42%, rgba(15,36,54,0.0) 100%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero .row { align-items: end; }
  .hero-image-col { display: flex; align-items: end; justify-content: center; }
  /* Reducir padding superior en desktop para que no se vea tan alto */
  .hero { padding-top: 56px; }
}
.hero h2 {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.hero p { max-width: 620px; opacity: 0.95; }
.hero h2 span {
  color: var(--primary);
  font-weight: 700;
}
.hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-figure { 
  position: relative; 
}

@media (min-width: 992px) {
  /* Ajuste preciso solo en escritorio */
  .hero-people {
    position: relative;
    display: block;
    width: 200%;
    max-width: none;
    left: auto;
    transform: translate(-5%, 15%);
    margin-bottom: 0;
  }
}


.btn-servicios {
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 200, 201, 0.4);
}
.btn-servicios:hover {
  background-color: #18a9aa;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 200, 201, 0.5);
}

/* ===== SERVICIOS ===== */

.servicios { margin-top: -105px; }

.titulo-servicios {
  background: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(23,46,68,0.22);
  border: 3px solid #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 6;
}

.servicios .container { position: relative; z-index: 5; }

.servicio-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 14px 28px rgba(23,46,68,0.12);
  border: 2px solid rgba(31,200,201,0.25);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.servicio-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.servicio-card:hover img {
  transform: scale(1.05);
}

/* ==== Imagen con sombreado degradado azul ==== */
.servicios .card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
  background: #f5f5f5;
}

/* Imagen dentro de la tarjeta */
.servicios .servicio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.95) contrast(1.05);
  z-index: 1;
  position: relative;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* 🔹 Degradado azul de claro a oscuro */
.servicios .card-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(94, 230, 233, 0.45) 10%,    /* celeste claro arriba */
    rgba(31, 200, 201, 0.45) 40%,   /* azul medio */
    rgba(15, 36, 54, 0.85) 100%     /* azul oscuro abajo */
  );
  z-index: 2;
  pointer-events: none;
}

/* 🔹 Viñeta lateral opcional (para profundidad) */
.servicios .card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 100% 0%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.15) 100%
  );
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
}


.servicio-card .card-body {
  background: #0f2436;
  color: #fff;
  position: relative;
  padding-top: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servicio-card h5 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  margin-top: 0.25rem;
}

.servicio-card p { font-size: 0.95rem; }


/* Controles y overlay de tarjetas (Servicios) */
.servicios .card-img-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.servicios .grad-top {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(31,200,201,0.60) 0%,
    rgba(31,200,201,0.38) 22%,
    rgba(0,0,0,0.00) 55%,
    rgba(15,36,54,0.85) 100%
  );
  pointer-events: none;
}
/* Viñeta sutil para reforzar el sombreado lateral/superior */
.card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 100% 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.servicio-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 1.25rem;
  border: 2px solid #fff;
}
/* Reposicionar icono cuando está dentro del body de la tarjeta */
.servicio-card .card-body .servicio-icon {
  top: -22px;
  left: 18px;
  z-index: 2;
}
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
  z-index: 3;
}
.control i { font-size: 1.2rem; }
.control-left { left: -18px; }
.control-right { right: -18px; }
.control:hover { filter: brightness(1.1); }

/* ===== POR QUÉ ELEGIRNOS ===== */
.porque {
  background: white;
}
.porque .container { position: relative; }
.titulo-porque {
  background: var(--primary);
  color: white;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}
.razon-line {
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 14px;
  padding: 12px 26px 12px 112px; /* espacio para icono y conector */
  box-shadow: 0 6px 14px rgba(23,46,68,0.08);
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.razon-line + .razon-line { margin-top: 14px; }
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f2436;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  outline: 2px solid var(--primary);
  position: absolute;
  left: -28px; /* sobresale un poco más */
  top: 50%;
  transform: translateY(-50%);
}
.icon-circle i { font-size: 1.2rem; }
.razon-line::before {
  content: "";
  position: absolute;
  left: 38px; /* conector desde el icono hacia la caja */
  top: 50%;
  width: 50px;
  height: 8px;
  background: #0f2436;
  transform: translateY(-50%);
  border-radius: 6px;
}
.porque img {
  border: none;
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(23,46,68,0.12);
}
.razon-line p { margin: 0; color: #0f2436; font-weight: 500; font-size: 1rem; letter-spacing: 0.1px; }
.porque .razon {
  background: #fff;
  border: 2px solid rgba(23,46,68,0.1);
  border-left: 6px solid var(--primary);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.razon img {
  width: 45px;
  height: 45px;
}
.razon p {
  margin: 0;
  font-weight: 500;
  color: var(--dark);
}

.equipo { 
  background: var(--bg); 
  padding: 3rem 0; 
}

.titulo-equipo {
  background: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23,46,68,0.16);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.equipo-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 14px 28px rgba(23,46,68,0.12);
  max-width: 280px;
  margin: 0 auto;
}

.equipo-card:hover { 
  transform: translateY(-8px); 
}

/* === CENTRADO PERFECTO DE IMÁGENES === */
.equipo-card .card-img-wrapper {
  position: relative;
  background: var(--primary);
  height: 280px;
  overflow: hidden;
}

.equipo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);       /* tamaño visual ideal */
  transform-origin: center bottom;
  transition: transform 0.3s ease;
}

/* Ajustes individuales de centrado visual */
.eq-ana { object-position: 15% bottom; }     /* mueve un poco a la derecha */
.eq-carlos { object-position: 70% bottom; }  /* centrado perfecto */
.eq-maria { object-position: 70% bottom; }   /* mueve un poco a la izquierda */

.equipo-card:hover img {
  transform: scale(1.2);
}


/* En pantallas pequeñas, un ligero ajuste */
@media (max-width: 575.98px) {
  .eq-ana, .eq-carlos, .eq-maria { 
    transform: scale(1.06); 
  }
}

/* Overlay transparente */
.equipo-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.equipo-card .card-body {
  background: #0f2436;
  color: #fff;
  padding: 1.25rem 1rem;
}

.equipo-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.equipo-card p {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.equipo-card .experiencia {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}


/* ===== TESTIMONIOS ===== */
/* ===== TESTIMONIOS ===== */
.testimonios {
  background: var(--primary);
  padding: 4rem 0;
}

.testimonios .container {
  text-align: center;
}

.titulo-testimonios {
  background: #0f2436;
  color: #fff;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* === Tarjetas de Testimonios === */
.testimonio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(23, 46, 68, 0.15);
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.testimonio-card:hover {
  transform: translateY(-4px);
}

/* Imagen */
.testimonio-card img {
  width: 40%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
  display: block;
}

/* Contenido */
.testimonio-card .card-body {
  width: 60%;
  padding: 2rem;
  position: relative;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.testimonio-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}

.testimonio-author {
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonio-author strong {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.testimonio-author span {
  display: block;
  font-size: 0.85rem;
  color: rgba(23, 46, 68, 0.75);
}

/* Alternar pares (invertir orden) */
.testimonios .testimonio-card:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
}

.testimonios .testimonio-card:nth-child(even) img {
  border-radius: 0 20px 20px 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .testimonio-card {
    flex-direction: column !important;
    text-align: center !important;
  }

  .testimonio-card img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0 !important;
  }

  .testimonio-card .card-body {
    width: 100%;
    padding: 1.5rem;
  }
}


.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonio-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.testimonio-author {
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonio-author strong {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.testimonio-author span {
  font-size: 0.85rem;
  color: rgba(23,46,68,0.75);
}

/* Alternar las pares (2°, 4°, 6°...) */
.testimonios .testimonio-card:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.testimonios .testimonio-card:nth-child(even) img {
  border-radius: 0 20px 20px 0;
}

/* Versión responsive (móvil) */
@media (max-width: 768px) {
  .testimonio-card {
    flex-direction: column !important;
    text-align: center !important;
  }
  .testimonio-card img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0 !important;
  }
  .testimonio-card .card-body {
    width: 100%;
  }
}


/* Alternar las pares (2°, 4°, 6°...) */
.testimonios .testimonio-card:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.testimonios .testimonio-card:nth-child(even) img {
  border-radius: 0 20px 20px 0;
}

/* Versión responsive (móvil) */
@media (max-width: 768px) {
  .testimonio-card {
    flex-direction: column !important;
    text-align: center !important;
  }
  .testimonio-card img {
    width: 100%;
    border-radius: 20px 20px 0 0 !important;
  }
  .testimonio-card .card-body {
    width: 100%;
  }
}

/* ===== BLOG ===== */
.blog-section { 
  background: var(--primary); 
  position: relative;
  padding: 3rem 0 4rem;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 236px;
  left: 0;
  right: 0;
  height: 8px;
  background: #0f2436;
  z-index: 1;
}

.titulo-blog {
  background: #0f2436;
  color: #fff;
  display: inline-block;
  padding: 18px 60px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.3px;
  margin-bottom: 3rem;
}

.blog-wrapper {
  position: relative;
  padding-top: 70px;
}

.blog-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.blog-card:hover { transform: translateY(-6px); }

.blog-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #0f2436;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(31,200,201,0.4), 0 6px 20px rgba(0,0,0,0.3);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
  position: relative;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.blog-card .card-body {
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: left;
  position: relative;
}

.blog-card .card-body::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.blog-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  min-height: 52px;
}

.blog-card p {
  font-size: 0.85rem;
  color: rgba(23,46,68,0.75);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 65px;
}

.blog-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-link::after {
  content: '→';
  font-size: 1rem;
}

.blog-link:hover { color: var(--primary); }

.blog-date {
  font-size: 0.75rem;
  color: rgba(23,46,68,0.6);
  font-weight: 500;
}


/* ===== RECURSOS DESCARGABLES ===== */
.recursos-section { background: var(--primary); padding: 3rem 0; }
.titulo-recursos {
  background: #0f2436;
  color: #fff;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.recurso-card {
  border-radius: 18px;
  background: #fff;
  transition: transform 0.3s ease;
}
.recurso-card:hover { transform: translateY(-6px); }
.recurso-card .card-body { padding: 2rem 1.5rem; }
.recurso-icon {
  width: 60px;
  height: 60px;
  background: #0f2436;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto;
}
.recurso-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.recurso-card p {
  font-size: 0.85rem;
  color: rgba(23,46,68,0.75);
  line-height: 1.5;
}
.btn-recurso {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.btn-recurso:hover {
  background: #b71c1c;
  transform: scale(1.05);
}

/* ===== NEWSLETTER ===== */
.newsletter-section { 
  background: #0f2436 url('../img/actualizado.jpg') center/cover no-repeat; 
  color: #fff;
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,36,54,0.85);
  z-index: 1;
}
.newsletter-section .container {
  position: relative;
  z-index: 2;
}
.titulo-newsletter {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.3px;
}
.newsletter-text {
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.btn-newsletter {
  background: #ff6f00;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-newsletter:hover {
  background: #e65100;
  transform: scale(1.05);
}

/* ===== INFORMACIÓN Y SOLICITUD ===== */
.info-solicitud { background: #0f2436; }
.info-card, .solicitud-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(23,46,68,0.08);
}
.info-card h4, .solicitud-card h4 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.3rem;
}
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.info-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 3px;
}
.info-item strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.info-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(23,46,68,0.75);
  line-height: 1.5;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background: #128c7e;
  transform: scale(1.05);
}
.btn-solicitud-tipo {
  background: #fff;
  color: var(--dark);
  border: 2px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-solicitud-tipo.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-solicitud-tipo:hover {
  border-color: var(--primary);
}
.solicitud-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.solicitud-card .form-control,
.solicitud-card .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.solicitud-card .form-control:focus,
.solicitud-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(31,200,201,0.15);
}
.btn-enviar {
  background: #00897b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-enviar:hover {
  background: #00695c;
  transform: scale(1.02);
}

/* ===== SÍGUENOS ===== */
.siguenos-section { background: #0f2436; color: #fff; }
.siguenos-section h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.social-link {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0f2436;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.site-footer { background: #fff; color: var(--dark); }
.footer-logo { height: 180px; width: auto; }
.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 6px 0; }
.footer-list a { text-decoration: none; color: var(--dark); font-weight: 500; }
.footer-list a:hover { color: var(--primary); }
.footer-divider { border-top: 3px solid #0f2436; opacity: 1; }
.footer-bottom { font-size: 0.9rem; }
.footer-bottom .footer-links a { color: var(--dark); text-decoration: none; }
.footer-bottom .footer-links a:hover { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 80px 0;
  }
  .titulo-servicios, .titulo-porque {
    font-size: 1.2rem;
    padding: 8px 30px;
  }
}

@media (min-width: 992px) { .hero h2 { font-size: 3rem; } }
