@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Colores */
  --ci-primary: #41b6e6;
  --ci-primary-dark: #2da2d2;
  --ci-dark: #232329;
  --ci-gray-100: #f5f7fa;
  --ci-gray-200: #e5e7eb;
  --ci-gray-500: #6b7280;

  /* Bordes */
  --ci-radius-sm: 8px;
  --ci-radius-md: 12px;
  --ci-radius-lg: 16px;
  --ci-radius-xl: 20px;

  /* Sombras */
  --ci-shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --ci-shadow-md: 0 10px 30px rgba(0,0,0,0.08);

  /* Transiciones */
  --ci-transition: all 0.2s ease;
}

.body{
    font-family: "Poppins", sans-serif;
    color: var(--ci-dark);
}

a {
  color: var(--ci-primary);
  text-decoration: none;
}

a:hover {
  color: var(--ci-primary-dark);
}

.btn {
  border-radius: var(--ci-radius-md);
  font-weight: 500;
  transition: var(--ci-transition);
}

.btn-primary {
  background-color: var(--ci-primary);
  border-color: var(--ci-primary);
}

.btn-primary:hover {
  background-color: var(--ci-primary-dark);
  border-color: var(--ci-primary-dark);
}

.btn-success {
  background-color: var(--ci-primary);
  border-color: var(--ci-primary);
}

.btn-success:hover {
  background-color: var(--ci-primary-dark);
  border-color: var(--ci-primary-dark);
}

.btn-link {
  color: var(--ci-primary);
}

.btn-link:hover {
  color: var(--ci-primary-dark);
  text-decoration: none;
}

.form-control,
.form-select {
  border-radius: var(--ci-radius-md);
  border-color: var(--ci-gray-200);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ci-primary);
  box-shadow: 0 0 0 2px rgba(65,182,230,0.15);
}

.form-label {
  font-weight: 500;
}

.card {
  border-radius: var(--ci-radius-lg);
  border: 1px solid var(--ci-gray-200);
  box-shadow: var(--ci-shadow-sm);
}

.muse-card {
  transition: var(--ci-transition);
}

.muse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ci-shadow-md);
}

.rounded-ci {
  border-radius: var(--ci-radius-lg);
}

.shadow-ci {
  box-shadow: var(--ci-shadow-md);
}

.text-ci-primary {
  color: var(--ci-primary);
}

.titulosNegros {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 86px;
    color: #1e1e1e;
    line-height: 86px;
}

.titulosAzules {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 86px;
    color: #41B5E5;
}

.icono-home {
    height: 250px;
}

.blueSubtitles {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 66px;
    color: #41B5E5;
    line-height: 46px;
    text-align: center;
}

.secondSubtitles {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    text-align: center;
}

.textMenu {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
}

/* ================================
   Logos de seguridad – Responsive
   ================================ */

.logosSeguridad {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.imgSeguridad {
  max-width: 150px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/*.imgSeguridad:hover {
  filter: none;
  opacity: 1;
}*/

.logosSeguridadInd {
    width: 80px;
    padding: 50px;
}

.btnBlueLight {
    font-size: 16px;
}

.txtRight {
    text-align: right;
    padding-right: 20px;
}

.txtLeft {
    text-align: left;
    padding-left: 20px;
}

.parrafoRight {
    text-align: right;
    padding-right: 20px;
}

.parrafoLeft {
    text-align: left;
    padding-left: 20px;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-left {
    flex-direction: row;
    text-align: left;
}

.step-right {
    flex-direction: row-reverse;
    text-align: right;
}

.phone-img {
    max-width: 100%;
}

.svgMargin {
    padding: 40px;
    text-align: right;
}

.page-hero {
    background: #f8f9fa;
    padding: 50px 0 80px;
}

.page-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #41b6e6;
    margin-bottom: 20px;
}

.page-divider {
    display: block;
    width: 60px;
    height: 6px;
    background: #c6d8e0;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.page-subtitle {
    font-size:1.6rem;
    font-weight: 500;
    color: #003B5C;
}

.page-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.9rem;
    color: #41B5E5;
    border: 1px solid #41B5E5;
    border-radius: 20px;
    margin-top: 10px;
}

.hero-icon {
    margin-bottom: 15px;
    opacity: 0.9;
}

.basicSection {
    padding: 100px 20px 100px 20px;
}

/* CSS */
.lista-horizontal {
    display: flex;
    justify-content: center; /* O space-between, space-around, etc. */
    list-style: none; /* Elimina viñetas */
    padding: 0;
    margin: 0;
    gap: 20px; /* Espacio entre items */
}

.lista-horizontal a {
    text-decoration: none; /* Quita subrayado */
    color: black;
    padding: 10px;
}

.map-container {
  height: 450px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1000;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0,0,0,0.35);
      }


.integration-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.integration-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.integration-icon img {
  width: 36px;
  height: auto;
}

.integration-content h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.integration-content p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 24px;
}

/* LISTA */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: center; /* 🔑 CLAVE: icono al centro vertical del texto */
  gap: 14px;
  margin-bottom: 18px;
}

/* ÍCONO */
.plan-features small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* TEXTO */
.feature-right {
  flex: 1;
}

.feature-right p {
  margin: 0;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.demo-calendar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.calendar-header {
  text-align: center;
  margin-bottom: 40px;
}

.calendar-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.calendar-header p {
  color: #666;
  font-size: 18px;
}

.calendar-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.calendar {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.calendar-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-month h2 {
  margin: 0;
  font-size: 20px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.day-name {
  text-align: center;
  font-weight: 600;
  color: #999;
  font-size: 14px;
}

.day {
  height: 48px;
  border-radius: 10px;
  border: none;
  background: #f1f2f6;
  cursor: pointer;
  font-weight: 500;
}

button.day.available.selected {
  background: #41b6e6; /* azul más fuerte */
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(65, 182, 235, 0.35);
}

button.day.available.selected:hover {
  background: #41b6e6;
  color: #ffffff;
}

button.day.available {
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.day.available {
  background: #d7f6ff;
}

.day:hover:not(.disabled) {
  background: #41b6e6;
  color: #fff;
}

.day.disabled {
  background: transparent;
  cursor: default;
  color: #999;
}

/* CONTENEDOR (sin cambios) */
.time-slots {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.time-slots h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

/* GRID (sin cambios) */
.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

/* SLOT BASE */
.slot {
  padding: 12px;
  border-radius: var(--ci-radius-md);
  border: 1px solid var(--ci-gray-200);
  background: #fff;
  cursor: pointer;
  transition: var(--ci-transition);
}

.slot:hover {
  background: var(--ci-primary);
  color: #fff;
  border-color: var(--ci-primary);
}

.slot.selected {
  background: var(--ci-primary);
  color: #fff;
  border-color: var(--ci-primary);
}

/* SLOT DISPONIBLE */
button.slot.available {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* HOVER SOLO PARA DISPONIBLES */
button.slot.available:hover {
  background: #41b6e6;
  color: #fff;
  border-color: #41b6e6;
}

/* SLOT SELECCIONADO */
button.slot.available.selected {
  background: #2da2d2;
  color: #fff;
  border-color: #2da2d2;
}

/* PROTEGER EL SELECCIONADO DEL HOVER */
button.slot.available.selected:hover {
  background: #2da2d2;
  color: #fff;
  border-color: #2da2d2;
}

/* SLOT DESHABILITADO */
.slot.disabled {
  background: #f5f5f5;
  color: #aaa;
  border-color: #e0e0e0;
  cursor: not-allowed;
  pointer-events: none;
}

.confirm-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #41b6e6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.confirm-btn:hover {
  background: #003B5C;
}

.demo-confirmation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

.confirmation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #41b6e6;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 600;
}

.confirmation-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.confirmation-subtext {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

.confirmation-footer {
  font-size: 14px;
  color: #6b7280;
}

.confirmation-footer a {
  color: #41b6e6;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.confirmation-footer a:hover {
  text-decoration: underline;
}

.confirmation-actions {
  margin: 24px 0 32px;
}

.calendar-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  background: #41b6e6;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.calendar-btn:hover {
  background: #003B5C;
  transform: translateY(-1px);
  color: #ffffff;
}

.lista-letras {
  list-style-type: lower-alpha;
  padding-left: 60px;
}

.lista-letras li::marker {
  content: counter(list-item, lower-alpha) ") ";
}

.lista-guion {
  list-style: none;
  padding-left: 60px; /* sangría izquierda */
}

.lista-guion li {
  position: relative;
}

.lista-guion li::before {
  content: "-";
  position: absolute;
  left: -15px;
}

.romanos {
  list-style-type: upper-roman;
}

.romanos li::marker {
  content: counter(list-item, upper-roman) ") ";
}

 /* Estilos generales para centrar el contenido 
    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #1a1a1a;
      color: #ffffff;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      margin: 0;
    }*/

    /* Contenedor principal del texto */
    .contenedor-texto {
      font-size: 20px;
      font-weight: 400;
      display: flex;
      align-items: center;
      white-space: pre-wrap; /* Respeta los espacios */
      margin-top: -30px;
    }

    /* * EL TRUCO VISUAL: 
     * El contenedor oculta todo lo que esté fuera de sus límites (overflow: hidden).
     * Esto crea el efecto de "máscara" por donde la palabra asoma.
     */
    .envoltura-palabra {
      display: inline-grid;
      overflow: hidden;
      vertical-align: bottom;
      line-height: 1.9rem;
      text-align: left;
    }

    /* Estado inicial de las palabras */
    .palabra {
      grid-area: 1 / 1;
      transform: translateY(100%);
      opacity: 0;
      color: #41B6E6; /* Le damos color verde para resaltar */
    }

    /* Clase para la palabra que entra */
    .palabra.activa {
      animation: subirEntrada 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Clase para la palabra que sale hacia arriba */
    .palabra.saliendo {
      animation: subirSalida 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes subirEntrada {
      0% { transform: translateY(100%); opacity: 0; }
      10% { opacity: 1; }
      100% { transform: translateY(0); opacity: 1; }
    }

    @keyframes subirSalida {
      0% { transform: translateY(0); opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100%); opacity: 0; }
    }

    /* Botón para reiniciar y ver el efecto de nuevo */
    button {
      margin-top: 40px;
      padding: 10px 24px;
      font-size: 1rem;
      cursor: pointer;
      background-color: #41B6E6;
      color: white;
      border: none;
      border-radius: 8px;
      transition: background 0.3s;
    }
    button:hover {
      background-color: #41B6E6;
    }

/* Tablets */

@media (max-width: 991px) {
  .calendar-container {
    grid-template-columns: 1fr;
  }

.logosSeguridad {
    gap: 32px;
  }

  .imgSeguridad {
    max-width: 130px;
  }

.txtRight {
    text-align:center;
    padding-right: 0px;
}

.txtLeft {
    text-align: center;
    padding-left: 0px;
}

.parrafoRight {
    text-align: center;
    padding-right: 0px;
}

.parrafoLeft {
    text-align: center;
    padding-left: 0px;
}

.step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-right,
    .step-left {
        text-align: center;
    }

    .phone-img {
        max-width: 240px;
        margin: 40px auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
  .logosSeguridad {
    gap: 24px;
  }

  .imgSeguridad {
    max-width: 110px;
  }
  .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #41b6e6;
    margin-bottom: 20px;
}
.page-subtitle {
    font-size:1.3rem;
    font-weight: 500;
    color: #003B5C;
}
/* Contenedor principal del texto */
    .contenedor-texto {
      font-size: 16px;
      font-weight: 400;
      display: flex;
      align-items: center;
      white-space: pre-wrap; /* Respeta los espacios */
      margin-top: -14px;
    }

    /* * EL TRUCO VISUAL: 
     * El contenedor oculta todo lo que esté fuera de sus límites (overflow: hidden).
     * Esto crea el efecto de "máscara" por donde la palabra asoma.
     */
    .envoltura-palabra {
      display: inline-grid;
      overflow: hidden;
      vertical-align: bottom;
      line-height: 1.5rem;
      text-align: left;
    }
}


   