@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Yellowtail&display=swap');

/* ======================================================================== Proyecto: 4Change - Consultores en Desarrollo Humano & Organizacional Hoja de estilos principal (styles.css) Desarrollado por: Vanessa Gallo Contacto: vane.gallo@hotmail.com Descripción: Este archivo contiene la configuración principal de estilos para el sitio web oficial de 4Change. Incluye variables de color, tipografías, layouts y componentes personalizados basados en Bootstrap 5. ======================================================================== */
:root {
  /* Colores base */
  --color-white: #ffffff;
  --color-navy: #101343;
  --color-dark: #222222; /* Colores complementarios */
  --color-pink-light: #e15a76;
  --color-yellow: #fcb815;
  --color-blue: #1f58a8;
  --color-purple: #a8328e;
  --color-pink-strong: #e4007c; /* Tipografías */
  --font-header: "Space Grotesk", sans-serif;
  --font-body: "Lato", sans-serif;
  --font-accent: "Yellowtail", cursive;
} /* ========================= Body ========================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
  padding: 0;
} /* ========================= Encabezados ========================= */
.product{
   color: var(--color-pink-strong);
}
h1 {
  font-family: var(--font-header);
  font-size: 3rem; /* ~48px en desktop */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}
h2 {
  font-family: var(--font-header);
  font-size: 2.5rem; /* ~40px */
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-navy);
}
h3 {
  font-family: var(--font-header);
  font-size: 2rem; /* ~32px */
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-navy);
}
h4 {
  font-family: var(--font-header);
  font-size: 1.5rem; /* ~24px */
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-navy);
}
h5 {
  font-family: var(--font-header);
  font-size: 1.25rem; /* ~20px */
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-navy);
}
h6 {
  font-family: var(--font-header);
  font-size: 1rem; /* ~16px */
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-navy);
}
.text-white{
  color: var(--color-white);
} /* ===================================================== Estilo para Accent (palabras destacadas caligráficas) ===================================================== */
.accent {
  font-family: var(--font-accent);
  font-weight: 600;
  /* display: inline-block;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.042); */
  color: #e4007c;
/* 
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
   #e4007c 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; */
}/* Escala en Desktop (≥ 992px) */
p .accent {
  font-size: 1.5rem;
} /* Párrafos (~24px sobre 16-17px) */
h1 .accent {
  font-size: 5rem;
} /* h1 3rem → accent 5rem */
h2 .accent {
  font-size: 3.5rem;
} /* h2 2.5rem → accent 3.5rem */
h3 .accent {
  font-size: 2.75rem;
} /* h3 2rem → accent 2.75rem */
h4 .accent {
  font-size: 2rem;
} /* h4 1.5rem → accent 2rem */
h5 .accent {
  font-size: 1.5rem;
} /* h5 1.25rem → accent 1.5rem */
h6 .accent {
  font-size: 1.25rem;
} /* h6 1rem → accent 1.25rem */ /* =========================== Media queries responsivas =========================== */ /* Tablets (≤ 992px) */
@media (max-width: 992px) {
  /* Accent */
  p .accent {
    font-size: 1.3rem;
  }
  h1 .accent {
    font-size: 4rem;
  }
  h2 .accent {
    font-size: 3rem;
  }
  h3 .accent {
    font-size: 2.25rem;
  }
  h4 .accent {
    font-size: 1.75rem;
  }
  h5 .accent {
    font-size: 1.3rem;
  }
  h6 .accent {
    font-size: 1.1rem;
  } /* Headers */
  h1 {
    font-size: 2.5rem;
  } /* ~40px */
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 0.95rem;
  }
} /* Móviles (≤ 576px) */
@media (max-width: 576px) {
  /* Accent */
  p .accent {
    font-size: 1.1rem;
  }
  h1 .accent {
    font-size: 3rem;
  }
  h2 .accent {
    font-size: 2.25rem;
  }
  h3 .accent {
    font-size: 1.75rem;
  }
  h4 .accent {
    font-size: 1.5rem;
  }
  h5 .accent {
    font-size: 1.1rem;
  }
  h6 .accent {
    font-size: 1rem;
  } /* Headers */
  h1 {
    font-size: 2rem;
  } /* ~32px */
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.9rem;
  }
} /* ======================================================================== NAVBAR / MENÚ PRINCIPAL ======================================================================== */ /* Fondo personalizado */
.bg-pink-strong {
  background-color: var(--color-pink-strong) !important;
} /* Estilo general del navbar */
.navbar {
  padding: 0.75rem 1rem;
  font-family: var(--font-header);
} /* Links de navegación */
.navbar-nav .nav-link {
  color: var(--color-white);
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
/* CTA contenedor (teléfono + botón) */
.nav-cta{
  gap: 12px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-yellow);
  transform: translateY(-2px);
} /* Dropdown menú */
.dropdown-menu {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}
.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  color: var(--color-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-item:hover {
  background-color: var(--color-pink-light);
  color: var(--color-white);
} /* Teléfono */
.nav-phone {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.3s ease;
}
.nav-phone:hover {
  text-decoration: underline;
  color: var(--color-yellow);
} /* CTA Botón */
.btn-consulta {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-consulta:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark);
} /* Hamburguesa (vista móvil) */
.navbar-toggler {
  border-color: var(--color-white);
}
.navbar-toggler-icon {
  filter: invert(1); /* icono hamburguesa blanco */
} /* ======================================================================== NAVBAR / RESPONSIVE ======================================================================== */ /* Tablets y móviles */
/* ========================================================================
   NAVBAR / RESPONSIVE (HTML con .nav-cta dentro del collapse)
   ======================================================================== */

/* <= 991.98px (Bootstrap LG breakpoint) */
@media (max-width: 991.98px) {

  /* Menú centrado y cómodo */
  .navbar-nav{
    margin-top: 1rem;
    text-align: center;
  }

  .navbar-nav .nav-link{
    margin: 0.45rem 0;
    font-size: 1.05rem;
  }

  /* CTA dentro del collapse: apilado y centrado */
  .nav-cta{
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    gap: 10px;
  }

  .nav-phone{
    display: inline-block;
    margin: 0 !important;          /* anula me-lg-3 si aplica */
    text-align: center;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .btn-consulta{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem;
  }

  /* Dropdown: que no se sienta raro en móvil */
  .dropdown-menu{
    text-align: center;
    width: 100%;
  }
}

/* <= 575.98px */
@media (max-width: 575.98px){

  /* Logo REALMENTE compacto (tu regla anterior lo hacía más grande) */
  .navbar-brand img{
    width: 78px !important;
    height: 68px !important;
   
  }

  .navbar{
    padding: 0.6rem 0.85rem;
  }

  .nav-phone{
    font-size: 0.85rem;
  }

  .btn-consulta{
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    max-width: 260px;
  }
}

/* Móviles pequeños */
@media (max-width: 576px) {
  .navbar-toggler{
    padding: 0.25rem 0.45rem;
  }
  .navbar-brand img {
    width: 150px; /* logo más compacto */
    height: auto;
  }
  .nav-phone {
    font-size: 0.95rem;
  }
  .btn-consulta {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
} /* ======================================================================== FOOTER ======================================================================== */
.footer {
  /* Fondo degradado */
  background: linear-gradient(
    180deg,
    var(--color-navy) 0%,
    var(--color-dark) 100%
  );
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer-logo img {
  max-width: 100%;
  height: auto;
}
.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.5rem;
} /* Menú del footer */
.footer-menu li {
  display: inline-block;
  margin: 0 0.75rem;
}
.footer-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-menu a:hover {
  color: var(--color-yellow);
} /* Redes sociales */
.footer-social a {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-left: 0.6rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  color: var(--color-yellow);
  transform: translateY(-3px);
} /* Separador */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
} /* Texto legal */
.footer p {
  margin: 0.5rem 0 0 0;
}
.footer p a.footer-link {
  margin-left: 0.25rem;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer p a.footer-link:hover {
  color: var(--color-yellow);
} /* Scroll-to-top */
.footer-scroll-top {
  width: 40px;
  height: 40px;
  background-color: var(--color-pink-strong);
  color: var(--color-white);
  border-radius: 50%;
  display: none; /* oculto hasta que haya scroll */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-left: 1rem;
}
.footer-scroll-top:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  transform: scale(1.1);
}
.footer-scroll-top i {
  font-size: 1rem;
} /* ======================================================================== FOOTER RESPONSIVE ======================================================================== */ /* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .footer {
    font-size: 0.85rem;
    padding: 1.25rem 0.75rem;
  }
  .footer-menu li {
    margin: 0 0.5rem;
  }
  .footer-social a {
    font-size: 1.2rem;
    margin: 0 0.5rem;
  }
  .footer-scroll-top {
    width: 38px;
    height: 38px;
  }
} /* Móviles (≤ 576px) */
@media (max-width: 576px) {
  .footer {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
  }
  .footer-tagline {
    font-size: 0.75rem;
  }
  .footer-social a {
    font-size: 1.1rem;
    margin: 0 0.4rem;
  }
  .footer-scroll-top {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
} /* ========================= INDEX HERO ========================= */
.hero-section {
  background: url("../img/hero.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 8rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-position: top;
} /* Quitamos overlay */
.hero-section::before {
  display: none;
} /* Texto */
.hero-section h1 {
  color: var(--color-white);
  font-weight: 700;
  margin-top: 5rem;
}
.hero-section p {
  color: var(--color-dark); /* oscuro para contraste en la franja clara */
  font-size: 1.1rem;
  margin-top: 10rem; /* más espacio respecto al H1 */
} /* Botón principal */
.hero-section .btn-primary {
  background-color: var(--color-pink-strong);
  border: none;
  transition: background-color 0.3s ease;
}
.hero-section .btn-primary:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark);
} /* Botón secundario (desktop/tablet) */
.hero-section .btn-outline-light {
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
.hero-section .btn-outline-light:hover {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-dark);
} /* ========================= Responsive ========================= */ /* Tablets */
@media (max-width: 992px) {
  .hero-section {
    padding: 6rem 0;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: -5rem;
  }
  .hero-section p {
    margin-top: 1.5rem;
    color: var(--color-white);
  }
} /* Móviles */
@media (max-width: 577px) {
  .hero-section {
     background: url("../img/heromobile.png") no-repeat center center;
    padding: 4rem 1rem;
    background-position: top right; /* forzar alineación derecha */
    background-size: cover!important; /* asegurar que no se deforme */
  }
  .hero-section h1 {
    font-size: 1.75rem;
  }
  .hero-section p {
    font-size: 1rem;
  } /* Botón secundario en mobile: mejor contraste */
  .hero-section .btn-outline-light {
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    background-color: rgba(255, 255, 255, 0.85); /* fondo translúcido */
  }
  .hero-section .btn-outline-light:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-dark);
  }
} /* ========================= INDEX INTRO ========================= */
#index_intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--color-dark);
}
#index_intro .btn-primary {
  background-color: var(--color-pink-strong);
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#index_intro .btn-primary:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  transform: translateY(-3px);
} /* ========================= Responsive ========================= */
@media (max-width: 992px) {
  #index_intro {
    text-align: center;
    padding: 4rem 1rem;
  }
  #index_intro .btn {
    margin-top: 1.5rem;
  }
} /* ========================= INDEX COMO LO HACEMOS ========================= */
.esquema{
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
#index_como_lo_hacemos {
  background: url("../img/index_bg.png") no-repeat center center/cover;
  position: relative;
  z-index: 1;
  color: var(--color-dark);
  padding: 4rem 0;
}
#index_como_lo_hacemos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* transparencia ligera */
  z-index: -1;
}
#index_como_lo_hacemos h2 {
  font-family: var(--font-header);
  color: var(--color-navy);
  font-weight: 700;
}
#index_como_lo_hacemos p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--color-dark);
} /* -------- Desktop: círculo -------- */
.circle-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}
.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle-center img {
  width: 250px;
  height: auto;
} /* Items circulares */
.circle-item {
  position: absolute;
  width: 120px;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.circle-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
} /* Posiciones */
.item1 {
  top: -34px;
  left: 50%;
  transform: translate(-50%, 0);
}
.item2 {
  top: 20%;
  right: 0;
  transform: translate(0, -50%);
}
.item3 {
  bottom: 20%;
  right: 0;
  transform: translate(0, 50%);
}
.item4 {
  bottom: -33px;
  left: 50%;
  transform: translate(-50%, 0);
}
.item5 {
  bottom: 20%;
  left: 0;
  transform: translate(0, 50%);
}
.item6 {
  top: 20%;
  left: 0;
  transform: translate(0, -50%);
} /* Hover efectos → solo el icono crece */
.circle-item:hover i {
  transform: scale(1.2);
  color: var(--color-pink-strong);
} /* Colores íconos */
.icon-yellow {
  color: var(--color-yellow);
}
.icon-blue {
  color: var(--color-blue);
}
.icon-navy {
  color: var(--color-navy);
}
.icon-pink {
  color: var(--color-pink-strong);
}
.icon-purple {
  color: var(--color-purple);
}
.icon-dark {
  color: var(--color-dark);
} /* -------- Mobile: grid 2 columnas -------- */
.como-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.como-mobile i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.como-mobile:hover i {
  transform: scale(1.2);
  color: var(--color-pink-strong);
} /* Responsive */
@media (max-width: 768px) {
  .circle-wrapper {
    display: none;
  } /* escondemos círculo */
  .como-mobile {
    font-size: 0.85rem;
  }
  .como-mobile i {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  } /* escondemos grid */
} /* ===================================================== INDEX SERVICIOS – Carrusel expandible (Swiper) ===================================================== */
/* ===================================================== INDEX SERVICIOS – Carrusel expandible (Swiper) ===================================================== */
#index_servicios {
  position: relative;
  padding: 80px 0;
  background: url("../img/bg_servicios.png") center/cover no-repeat;
}

#index_servicios h2 {
  color: var(--color-navy);
}

#index_servicios .lead {
  color: var(--color-dark);
  max-width: 760px;
  margin: 0 auto;
}

/* Swiper base */
#index_servicios .swiper {
  width: 100%;
  padding-bottom: 60px;
}

#index_servicios .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Card base */
.servicio-card {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* ANTES: flex: 0 0 18%;  */
  flex: 0 0 24%; /* 4 tarjetas visibles tipo col-3 */
  transition: flex 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.servicio-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.servicio-card .card-title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Contenido oculto */
.servicio-card .card-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 300px;
}

.servicio-card .card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.servicio-card .card-content p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-servicio {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--color-pink-strong);
  padding: 10px 16px;
  border-radius: 28px;
  transition: all 0.25s ease;
}

.btn-servicio:hover {
  background: var(--color-yellow);
  color: var(--color-dark);
}

/* Hover desktop */
@media (hover: hover) {
  .servicio-card:hover {
    /* ANTES: flex: 0 0 35%; */
    flex: 0 0 40%; /* expansión horizontal sin salirse demasiado */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  }

  .servicio-card:hover .overlay {
    background: rgba(0, 0, 0, 0.65);
  }

  .servicio-card:hover .card-title {
    opacity: 0;
  }

  .servicio-card:hover .card-content {
    opacity: 1;
    max-height: 320px;
  }
}

/* Controles Swiper */
#index_servicios .swiper-button-next,
#index_servicios .swiper-button-prev {
  color: var(--color-pink-strong);
}

#index_servicios .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

#index_servicios .swiper-pagination-bullet-active {
  background: var(--color-pink-strong);
  opacity: 1;
}

/* ========================= Responsive ========================= */
/* Tablets */
@media (max-width: 992px) {
  .servicio-card {
    flex: 0 0 45%; /* ~col-6 */
    height: 360px;
  }

  .servicio-card .card-title {
    font-size: 1rem;
  }
}

/* Móviles */
@media (max-width: 576px) {
  .servicio-card {
    flex: 0 0 90%; /* casi full */
    height: 320px;
  }

  .servicio-card .card-title {
    display: none;
  }

  .servicio-card .card-content {
    opacity: 1;
    max-height: none;
    padding: 15px;
  }

  .servicio-card .card-content h3 {
    font-size: 1.2rem;
  }

  .servicio-card .card-content p {
    font-size: 0.9rem;
  }
}

/* Estado abierto en móviles */
.servicio-card.is-open {
  flex: 0 0 90%;
}

.servicio-card.is-open .overlay {
  background: rgba(0, 0, 0, 0.65);
}

.servicio-card.is-open .card-title {
  display: none;
}

.servicio-card.is-open .card-content {
  opacity: 1;
  max-height: none;
}

/* ======================================================================== INDEX NOSOTROS ======================================================================== */ /* ========================= Nosotros Hero ========================= */
#nosotros_hero {
  background: url("../img/hero_nosotros.png") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
#nosotros_hero h1 {
  color: #fff;
  font-size: 2.8rem;
}
#nosotros_hero h2 {
  color: #eee;
  font-size: 1.4rem;
} /* ========================= Valores ========================= */
/* ========================= NOSOTROS HERO ========================= */
#nosotros_hero {
  background: url("../img/hero_nosotros.png") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  z-index: 1;
}

#nosotros_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* Overlay con 10% de opacidad */
  z-index: 0;
}

#nosotros_hero .container {
  position: relative;
  z-index: 1;
}

#nosotros_hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

#nosotros_hero h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* ========================= Confianza ========================= */
#nosotros_confianza h3 {
  font-size: 2.5rem;
  font-weight: 700;
} /* ========================= CTA final ========================= */
#nosotros_cta {
  background: var(--color-pink-strong);
}
#nosotros_cta h2 {
  font-size: 1.8rem;
}
/* ========================================================================
   EMPLOYEE ENGAGEMENT PAGE
   ======================================================================== */
#ee_hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#ee_hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
#ee_hero .container {
  position: relative;
  z-index: 2;
}

#ee_intro img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* OBJETIVOS */
#ee_objetivos .bg-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}
#ee_objetivos i {
  color: var(--color-pink-strong);
  transition: transform 0.3s ease;
}
#ee_objetivos .bg-white:hover i {
  transform: scale(1.2);
}

/* RESULTADOS (KPIs con círculos) */
.kpi-circle-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kpi-circle-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.circle-chart {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 10px #fff;
  outline: 1px solid rgba(0, 0, 0, 0.04);
}
.circle-fill {
  display: block;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 1.5s ease, height 1.5s ease;
  min-width: 16px;
  min-height: 16px;
}
.kpi-circle-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pink-strong);
}
.kpi-circle-box p {
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ROADMAP */
#ee_metodologia .roadmap {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}
#ee_metodologia .roadmap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-pink-strong);
  z-index: 1;
}
#ee_metodologia .step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1;
  margin: 0 10px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#ee_metodologia .step .icon {
  display: inline-block;
  background: var(--color-pink-strong);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 15px;
}

/* CTA */
#ee_cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#ee_cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
#ee_cta .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  #ee_metodologia .roadmap {
    flex-direction: column;
    align-items: center;
  }
  #ee_metodologia .roadmap::before {
    top: auto;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }
  #ee_metodologia .step {
    margin: 20px 0;
    width: 80%;
  }
}
@media (max-width: 576px) {
  #ee_resultados h3 {
    font-size: 2rem;
  }
  #ee_cta h2 {
    font-size: 1.4rem;
  }
}
/* ================================
   CHANGE & RESILIENCE PAGE
==================================*/

/* HERO */
#cr_hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#cr_hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#cr_hero .container {
  position: relative;
  z-index: 2;
}

#cr_hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

#cr_hero h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

#cr_hero .btn {
  margin-top: 1.5rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
}

/* INTRO */
#cr_intro img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#cr_intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#cr_intro p {
  line-height: 1.7;
  font-size: 1.05rem;
}

/* OBJETIVOS */
#cr_objetivos h2 {
  font-size: 2rem;
  font-weight: 700;
}

#cr_objetivos .bg-white {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cr_objetivos .bg-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

#cr_objetivos i {
  color: var(--pink-strong, #e60073);
  transition: transform 0.3s ease;
}

#cr_objetivos .bg-white:hover i {
  transform: scale(1.2);
}

/* METODOLOGÍA - INFINITO */
.infinity-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.infinity-svg {
  width: 100%;
  height: auto;
}

/* FASES POSICIONADAS */
.phase {
  position: absolute;
  width: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.phase h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-strong, #e4007c);
  margin-bottom: 0.5rem;
}

.phase i {
  margin-right: 6px;
}

/* Ubicaciones alrededor del infinito */
.phase-left {
  top: 40%;
  left: -10%;
  transform: translateY(-50%);
}
.phase-right {
  top: 40%;
  right: -10%;
  transform: translateY(-50%);
}
.phase-top {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}
.phase-bottom {
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}

/* RESULTADOS (KPIs con círculos) */
.kpi-circle-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-circle-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.circle-chart {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.circle-fill {
  display: block;
  width: 0%;
  height: 0%;
  background: var(--pink-strong, #e60073);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 1.5s ease, height 1.5s ease;
}

.kpi-circle-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-strong, #e60073);
}

.kpi-circle-box p {
  font-weight: 500;
  margin-top: 0.3rem;
}

/* CTA */
#cr_cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#cr_cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

#cr_cta .container {
  position: relative;
  z-index: 2;
}

#cr_cta h2 {
  font-size: 2rem;
  font-weight: 700;
}

#cr_cta .btn {
  margin-top: 1.5rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
}

/* ================================
   RESPONSIVE
==================================*/
@media (max-width: 992px) {
  #cr_hero h1 {
    font-size: 2rem;
  }
  #cr_hero h2 {
    font-size: 1.1rem;
  }
  #cr_intro h2,
  #cr_objetivos h2,
  #cr_metodologia h2,
  #cr_resultados h2,
  #cr_cta h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  #cr_intro .col-lg-6:first-child {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .phase {
    position: static;
    margin: 20px auto;
    width: 90%;
  }
  .infinity-svg {
    display: none;
  } /* Ocultamos el lazo en móvil */
}

@media (max-width: 576px) {
  #cr_hero {
    min-height: 65vh;
  }
  #cr_hero h1 {
    font-size: 1.6rem;
  }
  #cr_hero h2 {
    font-size: 1rem;
  }
  #cr_resultados h3 {
    font-size: 2rem;
  }
  #cr_cta h2 {
    font-size: 1.4rem;
  }
}
/* ================================
   LEADERSHIP & TOP MANAGEMENT PAGE
==================================*/

/* HERO */
#lead_hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#lead_hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

#lead_hero .container {
  position: relative;
  z-index: 2;
}

#lead_hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

#lead_hero h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

#lead_hero .btn {
  margin-top: 1.5rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
}

/* INTRO */
#lead_intro img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#lead_intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#lead_intro p {
  line-height: 1.7;
  font-size: 1.05rem;
}

/* OBJETIVOS */
.objetivo-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.objetivo-box i {
  font-size: 2rem;
  color: var(--pink-strong, #e4007c);
  margin-bottom: 12px;
}
.objetivo-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.objetivo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* METODOLOGÍA tipo línea de tiempo */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
  z-index: 0;
}
.timeline-step {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 220px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.timeline-step .step-number {
  display: inline-block;
  background: var(--pink-strong, #e4007c);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 10px;
}
.timeline-step i {
  font-size: 1.8rem;
  color: var(--pink-strong, #e4007c);
  margin-bottom: 10px;
}
.timeline-step h6 {
  font-weight: 700;
}

/* RESULTADOS */
.resultado-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.resultado-box i {
  font-size: 2rem;
  color: var(--pink-strong, #e4007c);
  margin-bottom: 10px;
}
.resultado-box h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--pink-strong, #e4007c);
}
.resultado-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* CTA */
#lead_cta {
  background: var(--color-navy, #101343);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#lead_cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#lead_cta .btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
}

/* ================================
   RESPONSIVE
==================================*/
@media (max-width: 992px) {
  #lead_hero h1 {
    font-size: 2rem;
  }
  #lead_hero h2 {
    font-size: 1.1rem;
  }

  #lead_intro h2,
  #lead_objetivos h2,
  #lead_metodologia h2,
  #lead_resultados h2,
  #lead_cta h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  #lead_intro .col-lg-6:first-child {
    margin-bottom: 2rem;
  }

  .timeline {
    flex-direction: column;
  }
  .timeline::before {
    display: none;
  }
  .timeline-step {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  #lead_hero {
    min-height: 65vh;
  }
  #lead_hero h1 {
    font-size: 1.6rem;
  }
  #lead_hero h2 {
    font-size: 1rem;
  }
  #lead_resultados h3 {
    font-size: 1.5rem;
  }
  #lead_cta h2 {
    font-size: 1.4rem;
  }
}
/* =======================================================
   LEARNING & DEVELOPMENT PAGE
========================================================== */

/* Hero */
#ld_hero {
  position: relative;
  background: url("../img/learning_hero_bg.jpg") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 60px 0;
  color: #fff;
}

#ld_hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* Overlay para contraste */
  z-index: 0;
}

#ld_hero .container {
  position: relative;
  z-index: 1;
}

#ld_hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
}

#ld_hero h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

#ld_hero .btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
}

/* Intro */
#ld_intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* DesignLab */
#ld_designlab .designlab-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
#ld_designlab .designlab-card i {
  font-size: 2rem;
  margin-bottom: 12px;
}
#ld_designlab .designlab-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
}
#ld_designlab .designlab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Assessments */
#ld_assessments .assessment-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
#ld_assessments .assessment-box .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-pink-strong, #e4007c);
  margin-bottom: 10px;
}
#ld_assessments .assessment-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
#ld_assessments .assessment-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Academy */
#ld_academy .academy-list li i {
  min-width: 36px;
}
#ld_academy .academy-list h6 {
  margin-bottom: 4px;
  font-weight: 700;
}

/* Service DNA */
#ld_servicedna .dna-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
#ld_servicedna .dna-box i {
  color: var(--color-pink-strong, #e4007c);
}
#ld_servicedna .dna-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
#ld_servicedna .dna-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ld_servicedna .dna-line {
  width: 2px;
  height: 40px;
  background: var(--color-navy, #101343);
  display: block;
  margin: 6px 0;
}

/* CTA */
#ld_cta {
  background: var(--color-pink-strong, #101343);
  color: #fff;
  padding: 60px 20px;
}
#ld_cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#ld_cta .btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 28px;
}

/* Responsive */
@media (max-width: 992px) {
  #ld_hero { text-align: center; }
  #ld_hero h1 { font-size: 1.8rem; }
  #ld_hero h2 { font-size: 1rem; }
}
/* =============================
   EXP GRID - Tarjetas cuadradas
   ============================= */

.exp-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;          /* Hace la tarjeta perfectamente cuadrada */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Imagen cubre toda la tarjeta */
  transition: transform 0.4s ease;
}

.exp-card:hover img {
  transform: scale(1.1);      /* Zoom suave al pasar el mouse */
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
}

.exp-card:hover .exp-overlay {
  opacity: 1;
}

.exp-overlay h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.exp-overlay p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.exp-overlay .btn {
  font-size: 0.85rem;
  padding: 6px 14px;
}
/* ================================
   DETALLE DE EXPERIENCIAS 4CHANGE
   ================================ */

/* HERO */
#exp_detalle_hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#exp_detalle_hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

#exp_detalle_hero h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
  font-weight: 400;
}

/* INTRO */
#exp_detalle_intro p {
  font-size: 1.1rem;
  line-height: 1.6;
}

#exp_detalle_intro i {
  display: block;
  margin-bottom: 0.5rem;
}

#exp_detalle_intro p.mt-2 {
  font-size: 0.95rem;
  margin: 0;
}

/* VIDEO */
#exp_detalle_video iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* GALERÍA */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.exp-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* CTA */
#exp_detalle_cta {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#exp_detalle_cta h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

#exp_detalle_cta .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#exp_detalle_cta .btn:hover {
  transform: scale(1.05);
  background-color: #f8f9fa;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #exp_detalle_hero h1 {
    font-size: 2.2rem;
  }
  #exp_detalle_hero h2 {
    font-size: 1.2rem;
  }
  #exp_detalle_cta h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .exp-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

/*BENEFECIOS*/
 /* Beneficios – timeline con camaleón como bullet */
.benefits {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 70px;            /* espacio para línea + bullet */
  margin-top: 1.5rem;
}

/* Línea vertical */
.benefits::before {
  content: "";
  position: absolute;
  left: 35px;                    /* centro de los bullets */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.15)
  );
}

/* Cada beneficio como “step” en la línea */
.benefit-item {
  position: relative;
  font-size: 0.95rem;
}

/* Bullet del camaleón */
.benefit-item::before {
  content: "";
  position: absolute;
  left: -58px;                  /* ajusta para centrar según tu layout */
  top: 0.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../img/bullet-camaleon.png"); /* CAMBIA la ruta si es necesario */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7);      /* halo blanco alrededor */
}

/* Cápsula de texto del beneficio */
.benefit-item span {
  display: inline-block;
  background: #ffffff;
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  line-height: 1.5;
}

/* Opcional: pequeño efecto al pasar el mouse */
.benefit-item span:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}


.box{
  background:#fff; padding:30px 50px; border-radius:8px; box-shadow:0 10px 25px rgba(0,0,0,.3)
}