@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Colores Principales */
  --primary: #0A6ED1;
  --primary-dark: #09365a;
  --accent: #00A67E;
  --accent-light: #6ec697;

  /* Colores de Fondo y Texto */
  --bg: #FFFFFF;
  --bg-soft: #f7faf7;
  --bg-gradient: linear-gradient(to bottom, #e9f2fe, #e9fff2);
  --text-main: #1b3557;
  --text-dark: #1e1e1e;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;

  /* Estructura y Sombras */
  --max-width: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --header-height: 80px;
}



* {

  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body,
html {
 
  max-width: 100%;
 
  height: 100%;
  font-family: 'Poppins';
  background: var(--bg);
}

a {
  text-decoration: none;
}



ul,
ol {
  list-style: none;
}

/* ------------------------------------ */
/* HEADER                               */
/* ------------------------------------ */
.header {
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(244, 248, 241);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}


.menu-toggle {
  display: none;
  /* Oculto en PC */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #09365a;
  transition: 0.3s;
}


.logo img {
  width: clamp(120px, 15vw, 160px);
  height: auto;
  top: 0;
  margin-top: 10px;
  
}

/* NAV DESKTOP */
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  transition: 0.4s;

}

.nav-links a:hover {
  color: var(--accent);
}

/* Íconos Sociales */
.responsive-social{
  display: flex;
  gap:25px;
  }
.social-btn i {
  font-size: 22px;
  color: #349972;
  transition: 0.3s;
}

.social-btn:hover i {
  transform: translateY(-2px);
}
.text_info {
  display: none !important;
  /* fuerza que siempre esté oculto */
}
/* HAMBURGUESA */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: linear-gradient(to bottom, #4caf4fd4, #21c6f3);
  border-radius: 3px;
  transition: 0.3s;
}

/* ------------------------------------ */
/* HERO                                 */
/* ------------------------------------ */


.hero {
  position: relative;
  min-height: 65vh;
  margin-top: 120px;
  /* 👈 MISMO ALTO QUE EL HEADER */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}



.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height:100%;
  object-fit: cover;
  /* CLAVE */
 
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
 z-index: 1;
 
}



.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
 
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 700px;
  color: #fff;
}

.hero-p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 650px;
}

.hero-trust {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: #fff;
}

/* ------------------------------------ */
/* BOTONES                              */
/* ------------------------------------ */



.hero-content {
  text-align: center;
  z-index: 5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 10;
}

.btn-primary,
.btn-secondary {
  padding: 9px 15px;
  border-radius: var(--radius);
  border: 3px border solid#349972;
  position: relative;
  font-weight: 600;
  transition: 0.3s;
 
}

.btn-primary {
  background-color: #ffff;
  color: #328666;
 
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 3px solid #5fd4a7;
  

}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.title-2 {
  color: #1b3557;
  text-align: center;
  font-size: 35px;
  font-weight: 500;

}

.section-subtext-1 {
  text-align: center;
  color: #09365a;
  margin-bottom: 50px;
  font-size: 20px;

}

.section-1 {
  padding: 60px 20px;
  background: #f2f4f2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.valores-nstr {
  font-size: 2rem;
  color: #1a3a5a;
  margin-bottom: 40px;
}

.valores-grid-1 {
  display: grid;
  /* Crea columnas automáticas de mínimo 250px */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 10px;
}

.valor-card-1 {
  background: #f9fdfb;
  padding: 50px;
  border-radius: 12px;
  border-bottom: 4px solid;
  border-image: linear-gradient(to right,
      #1FA2C6,
      #6CC24A) 1;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.valor-card:hover {
  transform: translateY(-5px);
}

.valor-text-1 {
  color: #09365a;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;

}

.valor-card-1 p {
  font-size: 16px;
  color: #232323;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  /* Quitamos márgenes heredados */
  text-align: justify;

}


/*------------------------------------*/
/* SECTION SOLUCIÓN*/
.proceso-section {
  padding: 70px 0;
}

.proceso-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 60px;
  background: #f2f4f2;
}

/* TITLE */
.section-title-1 {
  font-size: 35px;
  font-weight: 500;
  color: #1b3557;
  text-align: center;
  position: relative;
  padding-top: 30px;

}


/* GRID */
.proceso-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e1e2e1d4, #edf4f6);
  text-align: center;
  margin-top: 10rem;
}



/* --- Grid: El contenedor principal --- */
.proceso-grid {
  display: grid;
  /* En escritorio: 4 columnas iguales */
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

p {
  text-align: left;
  hyphens: auto;
  word-break: normal;
}

/* --- Estilo de cada Tarjeta (Item) --- */
.proceso-item {
  flex-direction: column;
  background: #fffdfd;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.proceso-item:hover {
  transform: translateY(-5px);
}

.proceso-icon {
  width: 75px;
  /* Tamaño del círculo */
  height: 75px;
  /* Tamaño del círculo */
  background: linear-gradient(to bottom, #9fc9fc, #5bc987);
  /* Degradado similar a tu imagen */
  border-radius: 50%;
  /* Lo hace circular */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  align-items: center !important;
  /* Centrado vertical */
  justify-content: center !important;
  /* Centrado horizontal */

  /* 3. Márgenes */
  margin: 0 auto 20px auto;
  /* El "0 auto" lo centra respecto a la caja madre */

}

.proceso-icon i {
  font-size: 25px;
  color: #1b3557;
  /* Cambia al color de tu marca */
}

.proceso-subtitle {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #1b3557;

}

.proceso-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Texto */
.proceso-text {
  margin-top: auto;
  color: #2c2b2b;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin-top: px;
  min-height: 8.2rem;
  /* iguala los párrafos */
  margin-top: auto;
}


/**FORMULARIO DE CONTACTO PARA HOSPITALES**/

.contact-wrapper {
  padding: 80px 20px;
  background-color: #f7f9fc;
}

.title-form {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 40px;
}

/* Card principal */
.contact-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #e9f2fe, #e9fff2);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(157, 101, 101, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* ========================= 
        */
/* FORMULARIO                */
/* ========================= */

.contact-form {
  padding: 50px;
}

.contact-form .logo {
  max-width: 140px;
  margin-bottom: 30px;
}

/* Formulario */
.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Labels */
.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder {
  color: #9ca3af;
}



.contact-form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Checkbox */
.contact-form input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form input[type="checkbox"]+a,
.contact-form a {
  color: #343535;
  text-decoration: none;
}

.contact-form a:hover {
  text-decoration: underline;
}

/* Texto legal */
.contact-form form {
  font-size: 0.85rem;
  color: #4b5563;
}

/* Botón */
.contact-form button {
  width: 250px;
  margin-top: 25px;
  padding: 14px;
  background: linear-gradient(to bottom, #9fc9fc, #5bc987);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.contact-form button:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* ========================= */
/*     COLUMNA DERECHA         */
/* ========================= */

.contact-info {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Columna imagen */
.contact-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*----------------------------*/
/*======SECCIÓN ENFERMERAS======*/
/*-----------------------------*/
 .hero-2 {
  position: relative;
  min-height:60vh;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-content-2 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 0 20px;
}

.hero-title-2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-p-2 {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.2;
  padding-top: 25px;
}
.enfermeras-section {
  position: relative;
  padding:40px 20px;
  overflow: hidden;
}

/* Imagen de fondo con opacidad */
.enfermeras-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  /* 👈 aquí controlas la opacidad */
}

/* Contenido encima de la imagen */
.enfermeras-grid,
.title-fullwidth {
  position: relative;
  z-index: 1;
}

.enfermeras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Beneficios en grid */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}





.enfermeras-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;

}

.enfermeras-section,
.nf-section {
  width: 100%;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
  padding: 80px 20px;
  background: #f2f4f2;
  font-family: 'Inter', sans-serif;
}

p {
  color: #4a5a6a;
  line-height: 1.6;
}

.enfermeras-content {

  width: 100%;
}

.enfermeras-grid {
  display: grid;
  gap: 50px;
  align-items: start;
  /* 👈 importante */
}


.title-str {
  font-size: 1.5rem;
  text-align: center;
  margin-top:10px;
  color: #0f2a44;
}

.beneficios-grid {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 2.5rem;

}

.beneficio-item {
  background: white;
  border-left: 5px solid #10B981;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}



.beneficio-item h3 {
  font-size: 1.05rem;
  text-align: center;
}

.text-enf {
  text-align: justify;
  color: #404141;
  font-size: 17px;
}

.beneficio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.beneficio-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0f2a44;
}

/* ====== SECCIÓN FORMULARIO ====== */
.nf-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

/* Wrapper flex */
.nf-wrapper {
  display: flex;
  justify-content: space-between;
  /* separa columnas en desktop */
  gap: 2rem;
  /* espacio entre columnas */
  max-width: 1200px;
  /* ancho máximo */
  margin: 0 auto;
  /* centra el contenedor */
  flex-wrap: wrap;
  /* permite que las columnas bajen en móvil */
  padding: 0 20px;
  /* margen lateral para que no toque bordes */
  box-sizing: border-box;
  /* importante para padding */
}


/* ============================= */
/* Columna de información */
.nf-info,
.nf-col-form {
  flex: 1 1 45%;
  /* ancho base 45% aprox */
  max-width: 600px;
  /* no se haga gigante en pantallas enormes */
  box-sizing: border-box;
}

/* Imagen */
.nf-info .img-enf {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Titulos y párrafos */
.nf-info h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: #09365a;
}

.nf-info p {
  font-size: 1rem;
  line-height: 1.6;

}

/* Lista de beneficios */
.nf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nf-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================= */
/* Columna del formulario */
.nf-col-form {
  flex: 1 1 400px;
}


.nf-form {
  width: 100%;
  max-width: 500px;
  /* que no se haga gigante en desktop */
  margin: 0 auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Formulario */
.nf-form {
  width: 100%;
  max-width: 500px;
  /* que no se haga gigante en desktop */
  margin: 0 auto;
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Titulos y subtitulos del formulario */
.nf-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #09365a;
}

.nf-desc,
.nf-small {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #09365a;
}

.nf-subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #09365a;
}

/* Grupos de inputs */
.nf-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nf-group input,
.nf-group select {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Botón de envío */
.nf-btn {
  background: linear-gradient(to bottom, #9fc9fc, #5bc987);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border: none;
  font-size: 17px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nf-btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
}

/* Legal */
.nf-legal {
  font-size: 0.8rem;
  color: #555;
  margin-top: 1rem;
}

.ocr-section {
    background: #f5f7fb;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
}

.ocr-section input {
    margin: 20px 0;
}

#resultado {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
}


/*--------------------------------------*/
/*--------------------------------------*/
/*SECCIÓN SOBRE NOSOTROS */
/*--------------------------------------*/
/*--------------------------------------*/
.section-two-columns {
  padding: 90px 20px;
  margin: auto;
  /* Centra la sección en pantallas grandes */
  display: flex;
  flex-direction: column;
  /* Apila los elementos verticalmente (Título arriba) */
  align-items: center;
  /* Centra todo horizontalmente */
}

.title-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #9bf4d2, #759bd5);
  padding: 60px 20px;
  justify-content: center;
  text-align: center;
}


/* Título centrado */
.title-fullwidth .title-enf {
  width: auto;
  max-width: 1200px;
  justify-content: center;
  margin: auto;
  text-align: center;
  font-size: 2.6rem;
  color: #0f2a44;
  margin-top: 50px;
  margin-bottom: 15px;
}

.title-fullwidth .subtitle-enf {
  color: #f9fbfe;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5rem;
}

/* Contenedor de las dos columnas (Video y Texto) */
.content-2 {
  max-width: 80%;
  display: flex;
  flex-direction: row;
  margin-top: 70px;
  /* En PC van de lado a lado */
  gap: 40px;
  /* Espacio entre video y texto */
  align-items: center;


}

/* Columna del Video */
.video-column {
  flex: 1;
  /* Toma el 50% del ancho */
  width: 80%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* Relación de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Columna del Texto */
.content-column {
  flex: 1;
  /* Toma el otro 50% */
  font-size: 1.1rem;

  line-height: 1.8;
  color: #555;
}

.section-two-columns p {
  font-size: 18px;
  color: #373636;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
  /* CAMBIADO: Antes tenías 20rem (el error principal) */
  position: static;
  /* ELIMINADO: top 20px */
}


.cards-container {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 40px 60px;
}


.card-2 {
  border: solid 1px #95ffc897;
  background: #f2f4f2;
  border-radius: 8px;
  padding: 25px;
  margin: 0;
  /* Eliminamos márgenes que causan desalineación */
}

.card-title-2 {
  font-size: 19px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 5px;
  color: #1a2e47;

}

.card-text-2 {
  font-size: 17px;
  text-align: justify;
  color: rgb(44, 43, 43);
  font-weight: 500;
}

p {
  color: rgb(44, 43, 43);
  margin-top: 15px;
  margin: 25 0 25px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

/* SECCIÓN 1: HERO */
.hero-nosotros {
  position: relative;
  margin-top: 40px;
  height: 450px;
  padding: 80px 20px;
  color: rgb(53, 49, 49);
  text-align: center;
}


.hero-nosotros .hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  color: rgb(43, 39, 39);
  border-radius: 15px;
}

/* SECCIÓN 2 Y 3 */
.container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}



/* SECCIÓN 4: VALORES */
.valores {
  padding: 60px 20px;
  background: #f2f4f2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 80px;
}

.valores-nstr {
  font-size: 2rem;
  color: #1a3a5a;
  margin-bottom: 40px;
}

.valores-grid {
  display: grid;
  /* Crea columnas automáticas de mínimo 250px */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 10px;
}

.valor-card {
  background: #f9fdfb;
  padding: 30px;
  border-radius: 12px;
  border-bottom: 4px solid;
  border-image: linear-gradient(to right,
      #1FA2C6,
      #6CC24A) 1;
  /* Detalle elegante en verde */
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.valor-card:hover {
  transform: translateY(-5px);
}

.valor-text {
  color: #09365a;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;

}

.valor-card p {
  font-size: 16px;
  color: #232323;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  /* Quitamos márgenes heredados */
  text-align: justify;

}



/* SECCIÓN 6 – EQUIPO */
.equipo {
  background: #f2f4f2;
  padding: 40px 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.equipo-title {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 26px;
  color: #1b3557;
}


.equipo-texto {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.equipo-name {
  text-align: center;
  color: #1b3557;
}

.persona img {
  text-align: center;
  height: 300px;
  width: 300px;
  border-radius: 100%;
  object-fit: cover;

}

.avatar {
  width: 300px;
  height: 300px;
  background: #cde7df;
  border-radius: 50%;
  margin: 0 auto 15px;

}

/*-------------------------------------*/
/*-----------BLOG-----------------*/
/*-------------------------------------*/

.banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  margin-top: 85px;

}

/* Imagen como fondo */
.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

/* Contenido centrado sobre la imagen */
.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  z-index: 1;
}

/* Texto */
.title-blg {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
  color: #09365a;
  background-color: rgba(255, 255, 255, 0.584);
}

.subtitle-blg {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #09365a;
  background-color: rgba(255, 255, 255, 0.584);
}


.section-title-1 {
  color: #09365a;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  background: #5ebedb7b;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}



.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}



/* BLOG SECTIONS */

/* Contenedor de la cuadrícula */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* La tarjeta del blog */
.blog-card-1 {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  /* Esto corta cualquier cosa que intente salirse */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* Contenedor de la imagen */
.card-image-container {
  width: 100%;
  height: 250px;
  /* Ajusta esta altura según prefieras */
  overflow: hidden;
}

/* La imagen propiamente dicha */
.blog-img-fix {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mantiene la proporción y llena el espacio */
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-1:hover .blog-img-fix {
  transform: scale(1.05);
  /* Efecto de zoom elegante al pasar el ratón */
}

/* Contenido de texto */
.card-content {
  padding: 20px;
  flex-grow: 1;
}

.text-h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #003366;
  /* Color corporativo */
}


/* Título */
.section-title-2 {
  color: #09365a;
  font-size: 30px;
  font-weight: 600;
  margin: 50px 0 60px;
  text-align: center;
}

.text- {
  color: #09365a;
  margin-top: 15px;
}



/* Contenedor con ancho */
.blog-section-2 .container-2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid: 2 columnas escritorio */
.blog-section-2 .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Tarjetas */
.blog-card-2 {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #10B981;
  ;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Contenido */
.blog-card-2 h3 {
  color: #09365a;
  margin-bottom: 15px;
}

.blog-card-2 p {
  color: #555;
  line-height: 1.6;
}

/* Títulos con el número resaltado */


.blog-section-3 {
  background: #f4f4f4;
  margin-top: 50px;
  padding: 80px;
  margin-bottom: 70px;
}


.blog-grid {
  display: flex;
  justify-content: center;
}

.homologacion-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.section-title-blog {
  font-size: 32px;
  text-align: center;
  color: #3c3d3d;
  padding-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
}

.homologacion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

.tx-nota {
  font-size: 18px;
}

.homologacion-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a2b3c;
}

/* Icono elegante */
.homologacion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bb6;
  font-weight: bold;
}

/* FEATURES SECTION */

/* Fix para que nada se salga del contenedor */
.container-3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.homologacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Estilo de las tarjetas de profesiones */
.homologacion-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border-bottom: 4px solid #0A6ED1;
  /* Detalle de color corporativo */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.homologacion-card:hover {
  transform: translateY(-5px);
}

.homologacion-card i {
  font-size: 2.5rem;
  color: #0A6ED1;
  margin-bottom: 15px;
}

.homologacion-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.homologacion-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.homologacion-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #555;
}

.homologacion-card li:last-child {
  border-bottom: none;
}

/* Aviso inferior */
.homologacion-notice {
  margin-top: 40px;
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}


/*---------------------------------------*/
/*CONTACTO*/
/*----------------------------------------*/


.contact-section {
  display: flex;
  justify-content: center;
   padding: 40px 20px;
  /* reduce el padding superior e inferior */
  margin-bottom:100px;
  /* opcional */
  background-color: #e5e5e5;

}

/* 1. HERO - ANCHO COMPLETO */
.hero-contact-header {
  width: 100%;
  height:200px;
  background: linear-gradient(135deg, #9bf4d2, #759bd5);
  margin-top: 122px;
  /* Degradado profesional */
  padding: 60px 0;
  text-align: center;
  color: #0f2a44;
  margin-bottom: 60px;
}

.hero-contact-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  align-items:center;
 
}

.hero-contact-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 600;
  color: white;
}

.contact-main-layout {
  display: flex;
  gap: 50px;
  /* espacio entre columnas */
  max-width: 1200px;
  /* más ancho en pantallas grandes */
  margin: 0 auto;
  /* centra la sección */
  flex-wrap: wrap;
  /* que columnas bajen en móviles */
  padding: 0 20px;
  /* margen lateral */
}

/* Columna Izquierda */
.contact-content-area,
.contact-info-sidebar {
  flex: 1 1 45%;
  max-width: 600px;
  padding: 20px;
  /* 👈 espacio interno alrededor del texto */
  box-sizing: border-box;
  /* importante para que padding no rompa el ancho */

}


.contact-subtitle {
  width: 500px;
  font-size: 24px;
  font-family: 'Poppins';
  line-height: 1.4;
  text-align: justify;
  color: #333;
  margin: 0;
}


/********contact form**********/
/* 1. Contenedor del formulario para centrarlo y darle aire */
.contact-form {
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
  /* centra el formulario */
  padding: 0 20px;
  /* aire en móviles */
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  /* importantísimo */
}

/* 2. Estilo para los inputs, el select y el textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  /* Ocupa todo el contenedor */
  max-width: 100%;
  /* Evita que se salga */
  padding: 15px;
  margin-bottom: 20px;
  /* Separa los campos entre sí */
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  /* Fundamental para que no se descuadre */
}

/* El área de texto ahora se verá proporcional */
/* El área de texto ahora se verá proporcional */
.contact-form textarea {
  min-height: 150px;
  resize: none;
  /* Evita que el usuario lo deforme */
}

/* 3. Efecto cuando el usuario hace clic para escribir */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
  font-weight: 400;
}

/* 4. Estilo específico para el área de mensaje */
.contact-form textarea {
  resize: vertical;
  /* Permite estirar hacia abajo pero no hacia los lados */
  min-height: 120px;
}

/* 5. Alineación de la casilla de privacidad */
.form-privacy {
  display: flex;
  align-items: flex-start;
  /* Alinea el checkbox arriba del texto */
  gap: 12px;
  margin-bottom: 25px;
  text-align: left;
  font-size: 14px;
  color: #444;
}

.form-privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

/* 6. El botón (basado en lo que se ve al final de tu captura) */
.form-privacy {
  display: flex;
  align-items: flex-start;
  /* Alinea el checkbox con la primera línea de texto */
  gap: 12px;
  margin: 20px 0;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  /* Evita que el checkbox se aplaste en móviles */
}

/* Columna Derecha */
.contact-info-sidebar {
  flex: 1;
  /* Toma el otro 50% */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-img {
  margin: 0;
  /* elimina márgenes extra */

  display: block;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Tarjetas de información */
.info-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.227);
}

.info-item i {
  color: #00a896;
  /* Color turquesa */
  font-size: 20px;
}

.info-details h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #1b3557;
}

.info-details p,
.info-details a {
  margin: 0;
  color: #363636;
  text-decoration: none;
  font-size: 15px;
}

/*FOOTER*/


.footer {
  background: linear-gradient(to bottom, #f6f8fa, #c1e7d0); 
  color: #0f2a44;
  font-family: 'Montserrat', sans-serif;
  border-top: solid 1px #ebefef;
  
  
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding:60px 20px 40px;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-block {
  display: flex;
  gap: 5px;
  flex-direction: column;

}

.footer-logo {
  max-width: 160px;
  
}

.footer-small {
  color: #0b2034;
  display: flex;
  font-weight:500;
  font-family:arial;
  font-size: 18px;
  opacity: 0.85;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 16px;


}

.footer-list a {
  color: #0b2034;
  font-weight: 100;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 500;

}

.footer-list a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ========================= */
/* REDES SOCIALES            */
/* ========================= */
.contact-link i {
  color: #00A67E;
  font-size: 19px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social-btn {
  width: 38px;
  height:38px;
  border-radius:50%;
  background-color: #00A67E;
  color: #f6f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.footer-social-btn:hover {
  transform: scale(1.1);
}

/* ========================= */
/* PARTE LEGAL               */
/* ========================= */

.footer-legal {
  background: #349972;
  border-top: 1px solid #ffff;
  text-align: center;
  padding:20px;
  font-size: 0.85rem;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: none;
}

.footer-legal p {
  color: #fff;

}

.footer-legal a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {

  .header {
    backdrop-filter: none;
    height: 120px;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: rgb(244, 248, 241);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
  }
     .text_info {
       display: block !important;
       /* fuerza que se muestre */
       text-align: center;
       font-size: 16px;
       margin: 10px 0;
       color: #333;
     }

  /* 3. Ajuste CRÍTICO para que el menú aparezca */
  .nav-links {
    width: 100%;
    display: none;
    height:75vh;
    /* Por defecto escondido */
    position: absolute;
    top: 100%;
    /* Aparece justo debajo del logo */
    left: 0;
    background: rgb(234, 236, 233);
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  /* 4. Esta clase se activa con el clic de JS */
  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 10px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #09365a;
    font-weight: 500;
  }
   

  /* ------------------------------------ */
  /* SECCIONES GENERALES                  */
  /* ------------------------------------ */


    .hero-bg-img  {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* CLAVE */
     
    }
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en tablets */
    gap: 20px;
  }

  .seccion-dos-columnas {
    margin-top: 160px;
    grid-template-columns: 1, 2fr;
    gap: 20px;
    padding: 25px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 2.6rem;
  }

   .hero{
    position: relative;
    margin-top: 40px;
    height:500px;
    padding: 80px 20px;
    color: rgb(53, 49, 49);
    text-align: center;
   }
    .hero-bg-img {
      position: absolute;
      inset: 0;
       object-fit: cover;
      /* CLAVE */
     
    }
    
  
  /*------------------------------------*/
  /*SECTION ENFERMERAS*/
  /*------------------------------------*/

  /* Título y subtítulo */

 


  .hero-2 {
    min-height: 50vh;
  }

  .hero-title-2 {
    font-size: 2rem;
  }

  .hero-p-2 {
    font-size: 1.3rem;
  }

  .enfermeras-section {
    padding: 3rem 1.5rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .enfermeras-grid {
    margin: auto;
    display: flex;
    text-align: center;
    justify-content: center;
  }


  /* Ajuste de textos y listas */
  .enfermeras-content p,
  .beneficios-lista {
    top: 0;
    /* Eliminamos el empuje hacia abajo */
    text-align: left;
  }

  .beneficios-lista li {
    margin-bottom: 20px;
  }

  /*******FORMULARIO**********/

 .nf-wrapper {
    gap: 1.5rem;
  }



  /*------------------------------*/
  /* SECCIÓN SOBRE NOSOTROS*/
  /*------------------------------*/

  .section-two-columns {
    display: flex;
    flex-direction: column;
    /* Móvil: apilado */
    gap: 20px;
    padding: 40px 20px;
    align-items: stretch;
  }



  /* Contenido de video + texto */
  .content-2 {
    display: flex;
    flex-direction: column;
    /* apilado por defecto */
    margin: auto;
    gap: 20px;
  }

  /* Video: wrapper 16:9 */
  .video-wrapper {
    position: relative;
    width: 100%;
    /* 16:9 ratio */
    overflow: hidden;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Texto */
  .content-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c2b2b;
    text-align: justify;
  }

  .section-two-columns .video-column,
  .section-two-columns .content-column {
    width: 100%;
  }

  /* Quitamos el margen gigante que detectamos antes */
  .section-two-columns p {
    margin-bottom: 20px !important;
    text-align: center;
  }

  .hero-title-wrapper {
    min-height: 120px;
    top: 0 !important;
  }

  /* Ajuste de tarjetas en móvil */

  .cards-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .equipo-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  /*section valores*/
  .valores {
    width: 80%;
    margin: auto;
  }

  .valores-nstr {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .valores-grid {
    /* En móviles pequeños, una sola columna */
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .valor-card {
    padding: 20px;
  }

  /**********CONTACTO*********/
  /***************************/

  .contact-main-layout {
    gap: 30px;
  }


  /* Contenedor principal */

  /***************************/
  /*-----BLOG----------------*/
  /**************************/

  .banner {
    min-height: 380px;
    margin-top: 85px;
  }

  .title-blg {
    font-size: 1.7rem;
    background-color: rgba(255, 255, 255, 0.584);
  }



  .section-title {
    margin-top: 0;

  }

  .blog-section-1 {
    margin-top: 35px;
    /* top margin más pequeño */
    padding: 0.5rem 1rem;

  }

  .section-title-1 {
    color: #09365a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .blog-grid {
    flex-direction: column;
    /* De 2 columnas a 1 sola */
    align-items: center;
    gap: 40px;
  }

  .blog-card-1 {
    margin: 30px 0;
    /* menos margen */
    padding: 25px;
  }

  .card-image {
    height: 250px;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }


  .blog-section-2 .blog-grid {
    grid-template-columns: 1fr;
    /* Una sola columna */
  }

  .blog-section-2 .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .blog-card-2 {
    padding: 30px;
  }

  /*******************************/
  /*FOOTER*/
  /*******************************/

  .footer-container {
    padding: 40px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-list li {
    margin-bottom: 12px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal p {
    line-height: 1.6;
  }

}


 @media (max-width: 480px) {

  .header {
    padding: 10px 20px;
  }

  .nf-section {
    padding: 3rem 1rem;
  }

  .nf-info h2,
  .nf-title {
    font-size: 1.5rem;
  }

  .nf-info p,
  .nf-desc,
  .nf-small {
    font-size: 0.95rem;
  }

  .nf-btn {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 0 15px;
  }
    .hero-buttons a {
      display: inline-block;
    width: 100%;
    max-width:220px;
    text-align: center;
   z-index:20;
  }
  }

/* Botón Flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

/* Animación de pulso suave */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ajuste para móviles: un poco más pequeño para no tapar contenido */
@media (max-width: 768px) {
  .header {
    background: rgb(244, 248, 241);
    height: 100px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }

  .hero {
    margin-top: 100px;
    /* ajusta si el header crece */
    min-height: 75vh;
  }

  .hero-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-p,
  .hero-trust {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    z-index: 10;
  }

  .hero-buttons a {
      display: inline-block;
    width: 100%;
    max-width:220px;
    text-align: center;
   z-index:20;
   cursor: pointer;
  }

  /*********SECTION-ENFERMERAS*********/

  


.hero-2 {
    min-height: 45vh;
    margin-top: 90px;
  }

  .hero-title-2 {
    font-size: 1.6rem;
  }

  .hero-p-2 {
    font-size: 1.1rem;
    padding-top: 15px;
  }
  .nf-wrapper {
    flex-direction: column;
    align-items: center;
    /* centra las columnas */
    gap: 2rem;
    /* separación entre columnas */
    padding: 0 10px;
    /* margen lateral para no tocar los bordes */
  }

  /* Columnas ocupan 100% */
  .nf-info,
  .nf-col-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Imagen: que no toque los bordes y se adapte */
  .nf-info .img-enf {
    width: 100%;
    max-width: 500px;
    text-align: center;
    /* opcional para que no se haga gigante */
    height: auto;
  }

  /* Títulos y textos centrados */
  .nf-info h2,
  .nf-info p,
  .nf-subtitle,
  .nf-desc,
  .nf-small {
    text-align: center;
  }

  /* Formulario: ocupa todo el ancho disponible */

  .nf-form {
    width: 100%;
    padding: 1.5rem;
    /* cómodo para móvil */
  }

  /* Botón: ancho completo */
  .nf-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }


  /*********CONTACTO*******/
  .contact-main-layout {
    flex-direction: column;
    align-items: center;
    /* centra las columnas */
  }

  .contact-content-area,
  .contact-info-sidebar {
    max-width: 100%;
    /* columnas toman todo el ancho disponible */
  }

  .contact-subtitle {
    width: 100%;
    text-align: center;
    /* opcional, mejora la lectura */
  }

  .sidebar-img {
    max-width: 90%;
    /* no toque los bordes */
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  /*****BLOG******/
  .blog-section-3 {
    padding: 40px 15px;
  }

  .homologacion-card {
    max-width: 100%;
    padding: 20px;
  }

  .section-title-blog {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .homologacion-list li {
    font-size: 0.95rem;
    text-align: center;
    /* opcional: lista centrada en móvil */
  }

}

/* ========================= */
/* RESPONSIVE – TABLET */
/* ========================= */
@media (max-width: 1024px) {

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .proceso-container {
    padding: 0 30px;
  }

  .proceso-item {
    padding: 25px 20px;
  }

  .proceso-text {
    min-height: auto;
    text-align: center;
  }
}

/* ========================= */
/* RESPONSIVE – MÓVIL */
/* ========================= */
@media (max-width: 600px) {

  .proceso-section {
    padding: 60px 15px;
    margin-top: 6rem;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
    top: 0;
  }

  .proceso-item {
    padding: 25px 18px;
  }

  .proceso-icon {
    width: 65px;
    height: 65px;
  }

  .proceso-icon i {
    font-size: 22px;
  }

  .proceso-subtitle {
    font-size: 1.15rem;
  }

  .proceso-text {
    font-size: 0.95rem;
    text-align: center;
    min-height: auto;
  }

  .banner {
    min-height: 380px;
    margin-top: 85px;
  }

  .hero-contact-header {
    width: 100%;
    margin-top: 100px;
  }

  .contact-form {
    max-width: 800px;
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Esto separa los campos automáticamente */
  }

}