/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
.g-menu-item-title {
  font-weight: 400;
}
#g-navigation .g-grid {
  align-items: center;
}
.g-owlcarousel-item-img:after {
  background: linear-gradient(180deg, #8f4dae00, #222d4f) !important;
}
/* 1. El header debe ser el contenedor principal */
#g-header {
  /* ¡Esencial para que el position: absolute del lienzo funcione! */
  position: relative;
  /* Dale una altura mínima visible. El 100% es a menudo 0 sin altura padre. */
  min-height: 200px;
  /* Aumenta este valor si tu header es más alto */
  /* Si las partículas son claras, un fondo oscuro ayuda a verlas. */
  background-color: #111;
  /* Asegúrate de que no haya overflow: hidden en el padre si el carrusel lo usa */
  /* Pero déjalo si quieres que las bolitas no salgan del header */
  overflow: hidden;
}
/* 2. El lienzo de partículas debe cubrir el header */
#particles-js-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Pon un z-index bajo para que esté al fondo del header */
  z-index: 1;
}
/* 3. Asegura que el contenido normal del header (títulos, logo, navegación) quede encima */
/* Este selector apunta a todos los hijos directos del header que NO son el lienzo de partículas */
#g-header > div {
  /* Necesario para que el z-index funcione en todos los navegadores */
  /* ¡Importante! Asegura que el contenido normal quede encima del lienzo (z-index: 1) */
  z-index: 5;
}
/* 4. Si el .g-container es el padre del #g-header, solo verifica esto: */
.g-container {
  /* Generalmente no necesitas cambiar nada aquí, pero asegúrate que no interfiera */
  /* Por ejemplo, no debe tener un position: relative a menos que sea necesario */
}
.g-owlcarousel-item-title-wrapper {
  display: flex;
  /* Activa Flexbox para alineación horizontal */
  align-items: center;
  /* Centra verticalmente el título y las imágenes */
  justify-content: center;
  /* Centra el grupo completo (imagen-título-imagen) */
  text-align: center;
  /* Por si el título tiene que ser centrado */
  gap: 5px;
  /* Espacio entre los elementos (ajusta este valor) */
}
/* Opcional: Asegúrate de que el h1 no rompa la alineación */
.g-owlcarousel-item-title {
  /* Si tienes márgenes predeterminados muy grandes, redúcelos */
  margin-top: 0;
  margin-bottom: 0;
}
/* Añade esto a tu archivo CSS personalizado */
.g-owlcarousel-item-icon-left, .g-owlcarousel-item-icon-right {
  /* Mantenemos tus estilos de tamaño */
  max-width: 60rem;
  height: auto;
  /* ¡CLAVE! Habilita la transición para que el movimiento no sea brusco */
  transition: transform 0.2s ease-out;
  /* 0.2s hace que sea rápida y suave */
}
/* --- ESTILOS DE LA SECCIÓN CARD SHOP Y GRID --- */
.g-cards-section {
  padding: 60px 0;
  /* Espacio arriba y abajo de la sección */
}
.g-cards-grid {
  /* Gantry Grid ya maneja las columnas, solo centra el contenido */
  justify-content: center;
  /* Centra las tarjetas si hay menos de 3 o en pantallas grandes */
  gap: 30px;
  /* Espacio entre las tarjetas */
}
/* Ajustes para Gantry Block para asegurar que las tarjetas se ajusten */
.g-cards-grid > .g-block {
  flex-basis: calc(33.333% - 20px);
  /* 3 tarjetas en fila - Ajusta según tu gap */
  max-width: calc(33.333% - 20px);
  display: flex;
  /* Asegura que el contenedor de la tarjeta ocupe el espacio */
  justify-content: center;
}
/* Responsividad para tabletas y móviles */
@media (max-width: 991px) {
  /* Tablets */
  .g-cards-grid > .g-block {
    flex-basis: calc(50% - 20px);
    /* 2 tarjetas por fila */
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  /* Móviles */
  .g-cards-grid > .g-block {
    flex-basis: 90%;
    /* 1 tarjeta por fila, con margen */
    max-width: 90%;
  }
}
/* --- ESTILOS DE CADA TARJETA --- */
.card-container {
  position: relative;
  /* Contexto para el fondo que se agranda */
  width: 100%;
  /* Ocupa todo el ancho disponible del g-block */
  padding-bottom: 20px;
  /* Espacio inferior para el efecto */
}
.card {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* Importante para las imágenes */
  text-align: center;
  position: relative;
  /* Para que la tarjeta quede encima del background */
  z-index: 2;
  /* Asegura que la tarjeta esté encima del efecto de fondo */
  height: 100%;
  /* Para que todas las tarjetas tengan la misma altura */
  /* Mini efecto de levantarse al pasar el mouse */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  /* Se levanta ligeramente */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.card-image img {
  width: 100%;
  height: auto;
  /* Altura fija para las imágenes */
  object-fit: cover;
  /* Recorta la imagen para que cubra el espacio */
}
.card-content {
  padding: 20px;
}
.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}
.card-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-button-wrapper {
  padding-bottom: 20px;
  /* Espacio para el botón centrado */
}
.card-button {
  display: inline-block;
  /* Para que text-align: center funcione */
  background-color: #222d4f;
  /* Color del botón de "Comprar" */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.card-button:hover {
  background-color: #0f1422;
  /* Color al pasar el mouse */
}
/* --- EFECTO DE FONDO QUE SE AGRANDA --- */
.card-background-effect {
  position: absolute;
  top: -25px;
  /* Desplazamiento inicial respecto a la tarjeta */
  left: 10px;
  right: 10px;
  height: 36rem;
  bottom: 0px;
  /* Ajusta la altura del efecto para que no sea igual a la tarjeta */
  border: 6px solid #394261;
  z-index: 1;
  /* Para que esté detrás de la tarjeta */
  transform: scale(1);
  /* Tamaño inicial */
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.card-container:hover .card-background-effect {
  transform: scale(1.03);
  /* Se agranda un 5% al pasar el mouse */
}
/* --- Estilos para la Imagen Pegada al Borde --- */
/* 1. Aseguramos que la columna de la imagen rompa el layout de Bootstrap */
.g-hero-image-col {
  /* CLAVE: Usamos margin-right negativo. El -12px es un valor de separación común en Bootstrap, 
       pero podrías necesitar ajustarlo a -15px o -20px dependiendo de tu template. */
  margin-right: calc(var(--bs-gutter-x) * -1);
  /* Aseguramos que la imagen esté a la derecha */
  display: flex;
  justify-content: flex-end;
  /* Evitamos que el contenido se salga del flujo */
  overflow: hidden;
}
/* 2. El contenedor de la imagen maneja el redondeo de las esquinas */
.g-hero-image-wrapper {
  width: 100%;
  height: 100%;
  /* Redondeo de las esquinas del lado del texto */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  /* Las esquinas del lado derecho NO se redondean */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  /* Recorta la imagen dentro del borde redondeado */
}
/* 3. La imagen en sí */
.g-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* --- Estilos para el Contenido y Texto --- */
.g-hero-content-col {
  /* Padding del lado derecho (separación de la imagen) */
  padding-right: 2rem !important;
}
/* Limitamos el ancho del texto para mejor lectura */
.g-hero-text-wrapper {
  max-width: 550px;
  margin: 0 auto;
  /* Centrar el bloque de texto si la columna es muy ancha */
  padding-left: 2rem;
  /* Mantener la separación del borde izquierdo */
}
/* --- Responsividad (Ajustes para Móviles y Tablets) --- */
@media (max-width: 991px) {
  /* Móviles y Tablets (breakpoint lg) */
  /* Resetea la columna de la imagen para que ya no use margin negativo */
  /* Redondea todas las esquinas en vista móvil */
  /* Centra el texto en móvil */
  /* Centra el botón */
  .g-hero-image-col {
    margin-right: 0;
    justify-content: center;
    padding: 0;
  }
  .g-hero-image-wrapper {
    border-radius: 10px;
    margin-bottom: 20px;
    /* Espacio entre imagen y texto */
  }
  .g-hero-text-wrapper {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .g-hero-content-col {
    padding: 0 !important;
  }
  .g-hero-button {
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}
.content-wrapper {
  max-width: 600px;
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #222d4f;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-section p {
  font-size: 1.125rem;
  color: #222d4fbe;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.btn {
  background-color: #222d4f;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #10225a;
}
.hero-image {
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  display: block;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 3rem 1.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .hero-image {
    min-height: 400px;
  }
}
#g-features {
  margin-bottom: 10rem;
}
#g-footer .g-content {
  margin: 0 !important;
}
.width-content .g-container {
  width: 85%;
}
.servicios-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.servicios-section *, .servicios-section *::before, .servicios-section *::after {
  box-sizing: border-box;
}
.servicios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.servicios-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.servicios-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.15);
  animation: serviciosFloat 8s ease-in-out infinite;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.services-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
  border-radius: 2px;
}
.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}
.services-subtitle {
  font-size: 1.3rem;
  color: #11409D;
  font-weight: 300;
  max-width: 1000px;
  margin: 0 auto;
}
.servicios-floating-circle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.servicios-floating-circle:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 3s;
}
.servicios-floating-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 80%;
  animation-delay: 6s;
}
.servicios-floating-circle:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 20%;
  animation-delay: 1s;
}
@keyframes serviciosFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.25;
  }
}
.servicios-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.servicios-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
  border-radius: 2px;
}
.servicios-intro {
  font-size: 1.3rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.8;
  background: rgba(102, 126, 234, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #11409D;
}
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.servicio-principal {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.servicio-principal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
}
.servicio-principal:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}
.servicio-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #11409D, #5c8ef1);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.servicio-titulo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.servicio-descripcion {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.servicio-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}
.servicio-lista li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  color: #444;
  font-size: 1.05rem;
}
----- .qr-servicios-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(76, 201, 196, 0.05));
  border-radius: 25px;
  padding: 3rem;
  margin: 4rem 0;
  border: 1px solid rgba(102, 126, 234, 0.1);
}
.qr-header {
  text-align: center;
  margin-bottom: 3rem;
}
.qr-icon {
  font-size: 4rem;
  color: #11409D;
  margin-bottom: 1rem;
  display: block;
}
.qr-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.qr-descripcion {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.qr-servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.qr-servicio-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-left: 5px solid;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.qr-servicio-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.1));
  border-radius: 50%;
  transform: translate(30px, -30px);
}
.qr-servicio-card.memoria {
  border-left-color: #ff6b6b;
}
.qr-servicio-card.celebraciones {
  border-left-color: #11409D;
}
.qr-servicio-card.mascotas {
  border-left-color: #7e6436;
}
.qr-servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.qr-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.qr-servicio-card.memoria .qr-card-icon {
  color: #ff6b6b;
}
.qr-servicio-card.celebraciones .qr-card-icon {
  color: #11409D;
}
.qr-servicio-card.mascotas .qr-card-icon {
  color: #7e6436;
}
.qr-card-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.qr-card-subtitulo {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-style: italic;
}
.qr-servicio-card.memoria .qr-card-subtitulo {
  color: #333;
}
.qr-servicio-card.celebraciones .qr-card-subtitulo {
  color: #333;
}
.qr-servicio-card.mascotas .qr-card-subtitulo {
  color: #333;
}
.qr-card-texto {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}
.servicios-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #11409D, #5c8ef1);
  border-radius: 25px;
  color: white;
}
.servicios-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}
.servicios-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.servicios-cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: #11409D;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}
.servicios-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
  color: #11409D;
  text-decoration: none;
}
@media (max-width: 768px) {
  .servicios-container {
    padding: 2rem 1rem;
  }
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .servicio-principal {
    padding: 2rem;
  }
  .qr-servicios-section {
    padding: 2rem;
  }
  .qr-servicios-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .qr-servicio-card {
    padding: 2rem;
  }
}
.containerplan {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.containerplan .header {
  text-align: center;
  margin-bottom: 4rem;
}
.containerplan .header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #11409D, #5c8ef1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.containerplan .header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.containerplan .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.containerplan .plan-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid #e2e8f0;
}
.containerplan .plan-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 12px 35px rgba(0, 0, 0, 0.1);
}
.containerplan .plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
  border-radius: 24px 24px 0 0;
}
.containerplan .plan-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.containerplan .plan-image img {
  max-width: 200px;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.containerplan .plan-card:hover .plan-image img {
  transform: scale(1.05);
}
.containerplan .plan-content {
  padding: 2.5rem;
}
.containerplan .plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}
.containerplan .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.containerplan .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 12px;
  border-left: 4px solid #11409D;
  transition: all 0.3s ease;
}
.containerplan .feature-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}
.containerplan .feature-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.containerplan .feature-text {
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}
.containerplan .feature-text strong {
  color: #1e293b;
  font-weight: 600;
}
.containerplan .plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #11409D, #5c8ef1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.containerplan .cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}
.containerplan .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #11409D, #5c8ef1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.containerplan .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}
@media (max-width: 768px) {
  .containerplan .header h1 {
    font-size: 2.5rem;
  }
  .containerplan .plans-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .containerplan .plan-content {
    padding: 2rem;
  }
  .containerplan {
    padding: 1rem;
  }
}
/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.containerplan .plan-card {
  animation: fadeInUp 0.6s ease forwards;
}
.containerplan .plan-card:nth-child(2) {
  animation-delay: 0.2s;
}
.containerplan .plan-card:nth-child(3) {
  animation-delay: 0.4s;
}
.nosotros-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.nosotros-section *, .nosotros-section *::before, .nosotros-section *::after {
  box-sizing: border-box;
}
.nosotros-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.nosotros-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.nosotros-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
  border-radius: 2px;
}
.nosotros-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}
.nosotros-subtitle {
  font-size: 1.3rem;
  color: #11409D;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.nosotros-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nosotros-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
}
.nosotros-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.nosotros-card-icon {
  font-size: 2.5rem;
  color: #11409D;
  margin-bottom: 1.5rem;
  display: block;
}
.nosotros-card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.nosotros-card-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}
.nosotros-full-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}
.nosotros-full-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #11409D, #5c8ef1);
}
.nosotros-mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.nosotros-mission-text strong {
  color: #11409D;
  font-weight: 600;
}
.nosotros-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.nosotros-value-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.nosotros-value-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}
.nosotros-value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #11409D, #5c8ef1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nosotros-value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.nosotros-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.nosotros-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.2);
  animation: nosotrosFloat 6s ease-in-out infinite;
}
.nosotros-floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.nosotros-floating-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.nosotros-floating-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 70%;
  animation-delay: 4s;
}
@keyframes nosotrosFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.nosotros-cta-section {
  text-align: center;
  margin-top: 4rem;
}
.nosotros-cta-text {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.nosotros-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, #11409D, #5c8ef1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.nosotros-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .nosotros-container {
    padding: 2rem 1rem;
  }
  .nosotros-title {
    font-size: 2.5rem;
  }
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nosotros-card {
    padding: 2rem;
  }
  .nosotros-full-section {
    padding: 2rem;
  }
}
.com-users-login {
  display: flex;
  justify-content: center;
}
.com-users-login__options {
  display: none !important;
}
/*# sourceMappingURL=style_13.css.map */