/*Estilos Fran*/


/* ==========================================================================
   1. VARIABLES Y CONFIGURACIÓN
   ========================================================================== */

:root {
  /* Colores principales */
  --color-primary-red: #da291c;
  --color-primary-blue: #0155B9;
  --color-dark-blue: #002855;
  --color-secondary-blue: #007bff;
  
  /* Colores de texto */
  --color-text-dark: #1C1F24;
  --color-text-gray: #6c757d;
  --color-text-light: #343a40;
  
  /* Colores de fondo */
  --color-bg-light: #f8f9fa;
  --color-bg-light-red: #f8e1e1;
  --color-bg-footer: #eef3f8;
  
  /* Bordes y sombras */
  --color-border-blue: #0155B9;
  --color-border-red: #FE5D67;
  --shadow-light: 0 2px 4px rgba(0,0,0,.08);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 4px 9px 24px 2px rgba(0, 0, 0, 0.75);
  
  /* Tipografía */
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-secondary: 'Open Sans', sans-serif;
  
  /* Tamaños de fuente */
  --font-size-xs: 13px;
  --font-size-sm: 15px;
  --font-size-base: 16px;
  --font-size-md: 20px;
  --font-size-lg: 23px;
  --font-size-xl: 24px;
  --font-size-2xl: 28px;
  --font-size-3xl: 32px;
  --font-size-4xl: 39px;
  
  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
  
  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 20px;
  --border-radius-xl: 25px;
  --border-radius-2xl: 28.3918px;
}

/* ==========================================================================
   2. RESET Y ESTILOS BASE
   ========================================================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-light);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   3. COMPONENTES DE NAVEGACIÓN (HEADER)
   ========================================================================== */

.navbar {
  background: #ffffff;
  background: -webkit-linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
  background: linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 25.6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-primary-red) !important;
}



.navbar-brand {
  
    width: 15%;
}
/* ==========================================================================
   4. SECCIONES PRINCIPALES Y DE PÁGINA
   ========================================================================== */

/* Info Section (General) */
.info-section {
  background: white;
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, #ffffff 39%, rgba(1, 85, 185, 0.30) 67%, #fe5d67 120%);
}

.info-title {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-3xl);
  font-weight: 300;
  line-height: 36px;
}

.info-title strong {
  color: var(--color-primary-red);
}

.info-title span {
  color: var(--color-text-dark);
  position: relative;
  display: inline-block;
}

.info-title span::before {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  width: 95%;
  bottom: 0;
  height: 2px;
  border-top: 2.4px solid var(--color-primary-blue);
  background: rgba(255, 255, 255, 0.00);
  box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.10);
}

.info-text {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-2xl);
  font-weight: 400;
  line-height: 40px;
}

.form-control-lg {
  
    font-size: 1rem !important; 
   
}

/* --- Secciones de páginas específicas --- */

/* Farmacovigilancia */
.farmacovigilancia-hero-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.farmacovigilancia-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.faqs-image-container {
    position: fixed;
    width: 46%;
    top: 22%;
}


/*
 * ----------------------------------------
 * 1. CONFIGURACIÓN DEL CONTEXTO
 * ----------------------------------------
 */

/* Es crucial que el contenedor padre (body o un wrapper principal)
   tenga position: relative para que position: absolute funcione correctamente. */
body {
    position: relative;
}

/*
 * ----------------------------------------
 * 2. ESTILOS BASE DEL CONTENEDOR
 * ----------------------------------------
 */
.faqs-image-container {
    right: 5%;
    width: 39%;
    padding-bottom: 0;
    max-width: 100%;
}

    .faqs-image-container img {
        /* La imagen debe llenar el 100% de su contenedor padre */
        width: 100%;
        height: auto;
    }

    /*
 * ----------------------------------------
 * 3. COMPORTAMIENTO STICKY (Fixed)
 * ----------------------------------------
 */
    .faqs-image-container.sticky {
        position: fixed;
        top: 16%; /* Sigue al scroll, anclado al 22% de la ventana */
        bottom: auto; /* Anula cualquier regla de 'bottom' */
    }

    /*
 * ----------------------------------------
 * 4. COMPORTAMIENTO STOP (Absolute)
 * ----------------------------------------
 */
    .faqs-image-container.stop {
        position: absolute;
        top: auto; /* Desactivar 'top' para que 'bottom' tome control */
        bottom: 341px;
    }

.farmacovigilancia-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-sm);
}

.farmacovigilancia-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: var(--spacing-xl);
}

.farmacovigilancia-title {
  color: var(--color-primary-blue);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-4xl);
  font-weight: 600;
  line-height: 40px;
  margin-bottom: var(--spacing-lg);
}

.farmacovigilancia-content {
  margin-top: var(--spacing-sm);
}

.farmacovigilancia-intro {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 26px;
  margin-bottom: var(--spacing-sm);
}

/* Contacto */
.contacto-hero-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.contacto-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: var(--spacing-lg) 0;
}

.contacto-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contacto-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
}

.contacto-intro {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 26px;
  margin-bottom: var(--spacing-sm);
}

/* FAQs - Preguntas Frecuentes */
.faqs-section {
  padding: var(--spacing-3xl) 0;
  background-color: white;
}



.faqs-title {
  color: var(--color-primary-blue);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-4xl);
  font-weight: 300;
  line-height: 1.2;
}

.faqs-title .preguntas-text {
  color: var(--color-text-dark);
}

/* Beneficios */
.beneficios-hero-section {
  padding-top: 20px;
  background: linear-gradient(355deg, #ffffff 0%, rgba(1, 85, 185, 0.05) 100%);
}

.beneficios-title {
  color: var(--color-primary-blue);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-4xl);
  font-weight: 300;
  line-height: 1.2;
}

.beneficios-title .beneficios-text {
  color: var(--color-text-dark);
}

.beneficios-intro {
color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
font-family: var(--font-family-Font-1, Montserrat);
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: var(--line-height-36_8, 36.8px); /* 131.429% */
}

.beneficios-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
  border: 10px solid var(--color-primary-blue);
  box-shadow: 0 10px 30px rgba(1, 85, 185, 0.2);
}

.beneficios-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.productos-section {
  padding: var(--spacing-3xl) 0;
}

.productos-title {
 color: var(--color-azure-36, #0155B9);

/* siegfriedcentroamerica.platinoweb.com/Semantic/Heading 2 */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-23, 23px);
font-style: normal;

line-height: var(--line-height-28, 28px); /* 121.739% */
}

.productos-title .revise-text {
  color: var(--color-primary-blue);
  font-weight: 600;
}

/* ==========================================================================
   5. COMPONENTES DE TARJETAS (CARDS)
   ========================================================================== */

/* Tarjetas de Información (Página de Inicio) */
.info-cards-section {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-3xl);
}

.info-card {
  border-radius: var(--border-radius-md) !important;
  border-top: 2.4px solid rgba(0, 0, 0, 0.11) !important;
  background: rgba(0, 0, 0, 0.11) !important;
  box-shadow: 6px 7px 4px 0 rgba(1, 85, 185, 0.25) !important;
  border: none;
}

.info-card .card-body {
  position: relative;
}

.info-card-icon-container {
  flex-shrink: 0;
}

.info-card-icon-container svg {
  color: var(--color-dark-blue);
  font-size: 3.5rem;
}

.info-card-content {
  position: relative;
  padding-left: var(--spacing-lg);
}

.info-card-content::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 3px;
  height: 195px;
  background-color: var(--color-primary-red);
  border-radius: 2px;
}

.info-card-title {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-3xl);
  font-weight: 400;
  line-height: 36px;
}

.info-card-title span {
  font-weight: 700 !important;
}

.info-card-text {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 40px;
}

.fw-bold-home {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 36px;
}

/* Tarjetas Volteables (Flip Cards) */
.flip-cards-section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 380px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-heavy);
  border-radius: var(--border-radius-2xl);
}

.flip-card-front {
  color: white;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flip-card-back {
  background-color: white;
  transform: rotateY(180deg);
  color: var(--color-text-light);
  text-align: left;
  padding: var(--spacing-lg);
  justify-content: flex-start;
  align-items: flex-start;
}

.card-gradient-blue {
  background: #333333;
  background: -webkit-linear-gradient(0deg, #333333 0%, #0155b9 100%);
  background: linear-gradient(0deg, #333333 0%, #0155b9 100%);
}

.card-gradient-red {
  background: #333333;
  background: -webkit-linear-gradient(0deg, #333333 0%, #a73439 100%);
  background: linear-gradient(0deg, #333333 0%, #a73439 100%);
}

.flip-card-front .refresh-icon-white {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.flip-card-front .card-title-front {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.icon-heart-hand svg,
.icon-people-group svg {
  color: white;
}

.icon-heart-hand {
   
    -webkit-transform: translateZ(0) translateY(0) translateX(0);
    transform: translateZ(0) translateY(0) translateX(0);
    opacity: 1;
    
    -webkit-animation: none;
    animation: none;
}

.flip-card:hover .icon-heart-hand {
    -webkit-animation: slide-out-fwd-tr 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-fwd-tr 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}



/* -------------------------------------------------------------------------- */
/* KEYFRAMES ICONO BLANCO CARDS OUT
/* -------------------------------------------------------------------------- */

@-webkit-keyframes slide-out-fwd-tr {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(600px) translateY(-300px) translateX(400px);
        transform: translateZ(600px) translateY(-300px) translateX(400px);
        opacity: 0;
    }
}

@keyframes slide-out-fwd-tr {
    0% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(600px) translateY(-300px) translateX(400px);
        transform: translateZ(600px) translateY(-300px) translateX(400px);
        opacity: 0;
    }
}




/*ANIMACIONES BOTON ROJO CARDS IN*/

/*
 * ----------------------------------------
 * KEYFRAMES para slide-in-fwd-bl (MODIFICADO para empezar a la mitad)
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-fwd-bl {
    /* Nuevo 0%: Estado intermedio (aproximadamente la mitad) */
    0% {
        -webkit-transform: translateZ(-300px) translateY(200px) translateX(-150px);
        transform: translateZ(-300px) translateY(200px) translateX(-150px);
        opacity: 0.5;
    }
    /* 100%: Posición final (visible) */
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-fwd-bl {
    /* Nuevo 0%: Estado intermedio (aproximadamente la mitad) */
    0% {
        -webkit-transform: translateZ(-300px) translateY(200px) translateX(-150px);
        transform: translateZ(-300px) translateY(200px) translateX(-150px);
        opacity: 0.5;
    }
    /* 100%: Posición final (visible) */
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

/* -------------------------------------------------------------------------- */
/* REGLAS PARA ACTIVAR LA ANIMACIÓN EN HOVER (APARICIÓN) */
/* -------------------------------------------------------------------------- */

/* REGLA GENERAL: Estado inicial de ambos íconos (antes de la animación) */

.icon-heart-hand-out {
    /* El estado por defecto debe ser el 0% del keyframe para que empiece de ahí */
    -webkit-transform: translateZ(-300px) translateY(200px) translateX(-150px);
    transform: translateZ(-300px) translateY(200px) translateX(-150px);
    opacity: 0.5;
    /* Aseguramos que la animación no esté activa inicialmente */
    -webkit-animation: none;
    animation: none;
    /* Necesitas forzar el motor 3D en el padre para que la animación se vea bien */
    transform-style: preserve-3d;
}

/* 1. ANIMACIÓN DEL ÍCONO FRONTAL (icon-heart-hand) */
.flip-card:hover .icon-heart-hand-out {
    /* La propiedad 'both' asegura que el ícono permanezca en el estado 100% (visible) */
    -webkit-animation: slide-in-fwd-bl 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-in-fwd-bl 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/* 2. ANIMACIÓN DEL ÍCONO TRASERO (icon-heart-hand-out) */
.flip-card:hover .icon-heart-hand-out {
    /* La propiedad 'both' asegura que el ícono permanezca en el estado 100% (visible) */
    -webkit-animation: slide-in-fwd-bl 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-in-fwd-bl 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}



.flip-card-back .refresh-icon-dark {
  font-size: 1.5rem;
  color: var(--color-text-gray);
}

.flip-card-back .hand-icon-red,
.flip-card-back .people-icon-blue {
  font-size: 1.8rem;
  margin-left: 0.5rem;
}

.flip-card-back .hand-icon-red {
  color: var(--color-primary-red);
}

.flip-card-back .people-icon-blue {
  color: var(--color-secondary-blue);
}

.flip-card-back h4.card-subtitle-back {
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-gray);
}

.flip-card-back ol,
.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  margin-left: 5%;
}

.flip-card-back ol li {
  margin-bottom: 0.5rem;
}

/* Tarjetas de Beneficios */
.beneficio-card {
  background: white;
  border: 3px solid transparent;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(180deg, #FE5D67 0%, #0155B9 100%) border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.beneficio-icon-container {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.beneficio-icon-container i {
  font-size: 3.5rem;
  color: var(--color-primary-red);
}

.beneficio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.beneficio-text {
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

/* Tarjetas de Productos */
.producto-card {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(180deg, #0155B9 0%, #0155B9 100%) border-box;
}

.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.producto-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: var(--spacing-lg);
  text-align: center;
  border-radius: 20px;
}

.producto-nombre {
  color: white;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
}

.producto-body {
  text-align: left;
  padding-bottom: 50px;
  padding-top: 20px;
}

.producto-regla {
 color: var(--color-azure-36, #0155B9);
font-family: var(--font-family-Font-1, Montserrat);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24.513px; /* 153.204% */
}

/* ==========================================================================
   6. COMPONENTES DE BOTONES
   ========================================================================== */

.btn {
  display: inline-block;
  
  border: none;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-button-section {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.btn-primary-outline {
  color: #565E59;
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: 20.225px;
  font-weight: 400;
  line-height: 32.36px;
  border: 2px solid var(--color-text-gray);
  padding: 0.8rem 2.5rem;
  background-color: transparent;
}

.btn-primary-outline:hover {
  background-color: var(--color-primary-red);
  color: white;
  border-color: var(--color-primary-red);
  box-shadow: 0 4px 8px rgba(0,0,0,.2) !important;
}

.btn-outline-primary-red {
  border-radius: 31.602px;
  border: 2.4px solid var(--color-border-red);
  background: #FFF;
  margin-left: 11%;
  color: var(--color-border-red);
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: 20.8px;
}

.btn-outline-primary-red:hover {
  background-color: var(--color-primary-red);
  color: white;
}

.btn-primary-blue {
  background-color: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-sm);
  transition: background-color 0.3s ease;
}

.btn-primary-blue:hover {
  background-color: #001f40;
  border-color: #001f40;
  color: white;
}

.btn-outline-primary-light-blue {
  border: 1px solid var(--color-dark-blue);
  color: var(--color-dark-blue);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-primary-light-blue:hover {
  background-color: var(--color-dark-blue);
  color: white;
}

.btn-beneficio {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  color: var(--color-primary-blue);
  border: 2px solid var(--color-primary-blue);
  border-radius: 25px;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-beneficio:hover {
  background-color: var(--color-primary-blue);
  color: white;
  transform: scale(1.05);
}

/* ==========================================================================
   7. COMPONENTES DE CONTACTO Y ACORDEÓN
   ========================================================================== */

.contact-channels {
  margin-top: var(--spacing-lg);
}

.contact-box {
  border-radius: var(--border-radius-lg);
  padding: 2px;
  background: linear-gradient(180deg, #fa5d68 0%, #0355b8 100%);
  position: relative;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
  padding: var(--spacing-lg);
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: white;
  border-radius: 16px;
  z-index: 1;
}

.contact-box > * {
  position: relative;
  z-index: 2;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-box-single {
  border-radius: var(--border-radius-lg);
  padding: 2px;
  background: #0355b8;
  position: relative;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
  padding: var(--spacing-lg);
}

.contact-box-single::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: white;
  border-radius: 16px;
  z-index: 1;
}

.contact-box-single > * {
  position: relative;
  z-index: 2;
}

.contact-box-single:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-text {
  font-size: var(--font-size-sm);
  color: var(--color-dark-blue);
  font-weight: 600;
  text-decoration: none;
}

.flag-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flag-icon {
  width: 40px;
  height: auto;
}

/* Acordeón (FAQs) */
.accordion {
  --bs-accordion-border-color: #e0e0e0;
  --bs-accordion-border-radius: var(--border-radius-sm);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-button {
  background-color: #d6e4f5;
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #d6e4f5;
  color: var(--color-text-dark);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:hover {
  background-color: #c5d9f0;
}

.accordion-body {
  background-color: white;
  color: var(--color-text-dark);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  padding: 1.25rem;
}


/* ==========================================================================
   9. FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--color-bg-footer);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.navigation-col {
  /* Style update from stylesD.css */
  border-radius: 0px 0px 0px 16px;
  border-left: 2.4px solid var(--color-primary-blue);
  border-bottom: 2.4px solid var(--color-primary-blue);
  padding-right: 15px;
}

.footer-col {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark-blue);
  margin-bottom: var(--spacing-sm);
}

.form-check-input:disabled  {
  color:black !important;
   opacity: 25 !important; 
}


    .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
        color: black !important;
        opacity: 25 !important;
    }


.footer-nav-list a,
.legal-list a {
  color: var(--color-text-light);
  text-decoration: none;
  line-height: 2.2;
  font-size: var(--font-size-base);
  transition: color 0.3s ease;
}

.footer-nav-list a:hover,
.legal-list a:hover {
  color: var(--color-primary-red);
}

.contact-col p {
  font-weight: 600;
  color: var(--color-text-light);
}

.contact-list li {
  font-size: var(--font-size-base);
  line-height: 2;
  display: flex;
  align-items: center;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-top: var(--spacing-sm);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-top: -4rem;
}

/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */

/* Tablets y dispositivos medianos (<= 991.98px) */
@media (max-width: 991.98px) {
    .hero-section,
    .farmacovigilancia-hero-section,
    .contacto-hero-section {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .farmacovigilancia-text-content,
    .contacto-text-content {
        padding-left: 0;
        padding-right: 0;
      
       
    }

    

    .hero-title,
    .farmacovigilancia-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .farmacovigilancia-intro,
    .contacto-intro {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .hero-image-container {
        width: 100%;
        height: 350px;
        position: relative;
        clip-path: none;
        margin-top: var(--spacing-lg);
        background-color: transparent;
    }

    /* Footer responsive adjustment */
    .navigation-col {
        border-left: none !important;
        border-bottom: none;
        border-radius: 0;
        padding-right: 0;
      
    }

    /* Beneficios responsive */
    .beneficios-hero-section {
        padding: var(--spacing-xl) 0;
    }

    .beneficios-title {
        font-size: 2rem;
        text-align: left;
    }

    .beneficios-intro {
        text-align: left;
        font-size: 1.1rem;
    }

    .beneficios-image-container {
        max-width: 400px;
        margin-top: var(--spacing-lg);
    }

    .productos-title {
        font-size: 1.8rem;
       
    }




    /* FAQs responsive */
    .faqs-section {
        padding: var(--spacing-xl) 0;
    }

    .faqs-title {
        font-size: 2rem;
        text-align:left;
        margin-bottom: var(--spacing-lg) !important;
    }


    .farmacias-table thead tr th:first-child {
       
        padding: 0px 0px 7px 15px !important;
    }


    .farmacia-data:first-child {
        
        padding: 6px 0px 7px 15px !important;
    }


    .faqs-image-container {
      
     
        margin-left:0%;
        margin-bottom: -24px;
        position: relative;
    }
}
}

/* Dispositivos móviles (<= 767.98px) */
@media (max-width: 767.98px) {




  /* MODIFICACIÓN: Espacio a la izquierda para el menú móvil */
  .navbar-nav {
    padding-left: 1rem; /* Ajusta este valor según sea necesario */
  }

  /* Footer responsive adjustment */
  .footer-col {
    padding-left: 0;
    padding-top: var(--spacing-sm);
    text-align: center; /* Centrar contenido de las columnas */
  }

  /* MODIFICACIÓN: Centrar logos del footer en móvil */
  .logo-col {
    align-items: center !important;
    justify-content: center !important; /* Añadido para centrar horizontalmente */
    text-align: center !important;
  }

  .logo-col .d-flex {
    align-items: center !important; /* Afecta al contenedor flex de las imágenes */
  }
  
  /* Centrar otros elementos del footer en móvil */
  .contact-list, .footer-nav-list, .legal-list {
      justify-content: center;
      text-align: center;
      padding-left: 0; /* Remover padding por defecto de la lista */
  }
  
  /* Botones y secciones */
  .action-button-section,
  .info-cards-section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }

    .btn-primary-outline:hover {
      
       font-size:  16px !important; 
    
    }

  
  .btn-primary-outline {
    font-size: var(--font-size-base);
    padding: 0.7rem 2rem;
  }

  /* Info Cards */
  .info-card-icon-container svg {
    font-size: 3rem;
  }
  
  .info-card-title {
    font-size: 1.4rem;
  }
  
  .info-card-text {
    font-size: 0.9rem;
  }
  
  .btn-outline-primary-red {
    padding: 0.6rem 0.5rem;
    margin-left: 0;
  }
  
  /* Flip Cards */
  .flip-card {
    height: 420px;
  }
  
  .flip-card-front .card-title-front {
    font-size: 1.5rem;
  }
  
  .flip-card-back h4.card-subtitle-back {
    font-size: 1.1rem;
  }
  
  .flip-card-back ol,
  .flip-card-back p {
    font-size: 0.9rem;
  }
  
  /* Wizard Form */
  .stepper-wrapper {
    padding: 0;
    margin-bottom: var(--spacing-xl) !important;
  }
  
  .step-counter {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .wizard-title {
    font-size: 1.5rem;
  }
  
  .wizard-description {
    font-size: 0.85rem;
  }
  
  .step-heading {
    font-size: 1.2rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .btn-primary-blue,
  .btn-outline-primary-light-blue {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Contacto */
  .contact-box {
    padding: var(--spacing-sm);
  }
  
  .flag-circle {
    width: 50px;
    height: 50px;
  }
  
  .flag-circle .flag-icon {
    width: 30px;
  }
  
  .contact-text {
    font-size: 0.9rem;
  }

  /* Beneficios & Productos */
  .beneficios-title { font-size: 1.75rem; }
  .beneficios-intro { font-size: 1rem; }
  .beneficios-image-container { max-width: 320px; border-width: 8px; }
  .beneficio-card { padding: var(--spacing-md); }
  .beneficio-icon-container i { font-size: 3rem; }
  .beneficio-text { font-size: 0.95rem; }
  .btn-beneficio { font-size: 0.85rem; padding: 0.5rem 1.2rem; }
  .productos-title { font-size: 1.5rem; }
  .producto-nombre { font-size: 1.1rem; }
  .producto-regla { font-size: 0.95rem; }

  /* FAQs */
  .faqs-title { font-size: 1.75rem; }
  .faqs-image-container { max-width: 320px; border-width: 8px; }
  .accordion-button { font-size: 0.95rem; padding: 0.875rem 1rem; }
  .accordion-body { font-size: 0.9rem; padding: 1rem; }
}

/* Dispositivos muy pequeños (<= 575.98px) */
@media (max-width: 575.98px) {
  .contacto-image {
    max-height: 300px;
  }
  .beneficios-image-container {
    max-width: 280px;
  }
}/* ==========================================================================
   11. CORRECCIONES MENÚ RESPONSIVE
   ========================================================================== */
 /* ==========================================================================
   CORRECCIONES PARA MENÚ MÓVIL RESPONSIVE
   ========================================================================== */
 
/* 1. ESTILOS BASE DEL NAVBAR */
.navbar {
  background: #ffffff;
  background: -webkit-linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
  background: linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
 
/* 2. AJUSTES GENERALES DEL TOGGLER */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
}
 
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
 
/* Ícono de hamburguesa por defecto */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}
 
/* 3. ESTILOS ESPECÍFICOS PARA MÓVIL */
@media (max-width: 991.98px) {
  
  /* Contenedor del navbar colapsable */
  .navbar-collapse {
    position: fixed;
    top: 0;
    /* OFFCANVAS IZQUIERDA */
    left: -100%;
    right: auto;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    /* Ajuste de padding para incluir el logo y el botón X */
    padding: 0 0 2rem 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  }
  
  /* Cuando el menú está abierto */
    .navbar-collapse.show {
        left: 0;
        right: auto;
        background: linear-gradient(180deg, var(--color-white-solid, #FFF) 74.82%, var(--color-azure-36, #0155B9) 100%);
    }
  
  /* Overlay oscuro detrás del menú
  .navbar-collapse.show::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }*/
  
  /* Botón de cierre "X" en la esquina superior derecha del Offcanvas */
  .offcanvas-close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 10000;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #000;
      padding: 0.5rem;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s ease;
  }
  
  .offcanvas-close-btn:hover {
      opacity: 1;
  }
  
  /* ESTILO CORREGIDO: Logo dentro del Off-Canvas CENTRADO */
  .navbar-collapse > .navbar-brand {
      /* Usamos Flexbox para asegurar el centrado del contenido (la imagen) */
      display: flex !important;
      justify-content: center;
      align-items: center;
      
      padding: 2.5rem 1.5rem 1rem 1.5rem;
      width: 100%;
  }
 
  /* Lista de navegación */
    .navbar-nav {
        padding: 0rem 0.5rem 1rem 2rem;
        width: 100%;
        /* Centrar elementos en el menú */
        align-items: start;
    }
  
  /* Items del menú */
  .nav-item {
    margin: 0;
    /* Eliminar separador */
    border-bottom: none;
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  /* Enlaces del menú */
  .nav-link {
    /* Color del enlace */
    color: #000 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem 0 !important;
    display: block;
    /* Centrar texto */
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #da291c !important;
  }
  
  /* Botón "Mi estado de cuenta" */
  .navbar-collapse .d-flex {
  
    /* Centrar el contenedor del botón */
    justify-content: center !important;
  }
  
  .btn-cuenta {
    width: 100%;
    max-width: 250px;
    text-align: center;
    border-radius: 25px;
    background: #565E59;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    font-weight: 600;
  }
  
  /* Posicionamiento del logo */
  .navbar-brand {
    order: 2;
  }
  
  .navbar-toggler {
    order: 1;
  }
  
  /* ÍCONO X CUANDO EL MENÚ ESTÁ ABIERTO */
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before,
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease;
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }
  
  /* Ajuste del container del navbar */
  .navbar > .container-fluid {
    position: relative;
    z-index: 10000;
  }
}
 
/* 4. ESTILOS PARA DESKTOP (mantener el diseño original) */
@media (min-width: 992px) {
  .navbar-nav {
    padding-left: 0;
  }
  
  .nav-link {
    color: #1C1F24;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: #da291c !important;
  }
}
 
/* 5. CORRECCIÓN PARA EVITAR SCROLL HORIZONTAL */
body.menu-open {
  overflow: hidden;
}
 
/* 6. LOGO RESPONSIVO */
.logo-img {
  max-height: 60px;
  width: auto;
}
 


@media (max-width: 575.98px) {
  .logo-img {
    max-height: 50px;
  }
}
 
/* 4. ESTILOS PARA DESKTOP (mantener el diseño original) */
@media (min-width: 992px) {
  .navbar-nav {
    padding-left: 0;
  }
  
  .nav-link {
    color: #1C1F24;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: #da291c !important;
  }
}
 
/* 5. CORRECCIÓN PARA EVITAR SCROLL HORIZONTAL */
body.menu-open {
  overflow: hidden;
}
 
/* 6. LOGO RESPONSIVO */
.logo-img {
  max-height: 60px;
  width: auto;
}
 
@media (max-width: 575.98px) {
  .logo-img {
    max-height: 50px;
  }
}

/* ==========================================================================
   12. ESTILOS PARA PÁGINA DE FARMACIAS
   ========================================================================== */

/* Contenedor de la tabla */
.farmacias-table-container {
    background: white;
    border-radius: var(--border-radius-md);
    /* Sombra más fuerte para visualizar mejor contra el fondo */
    box-shadow: var(--shadow-heavy);
    /* padding: var(--spacing-lg); */
    overflow-x: auto; /* Para que la tabla sea deslizable en pantallas muy pequeñas */
}

.farmacias-table {
    width: 100%;
    border-collapse: collapse;
    border-style: hidden; /* Oculta los bordes dobles de las celdas */
    /* Solo se visualizan los bordes exteriores de la tabla */
    border: none !important; 
}

/* Encabezado: Color de fondo, texto blanco y border-radius superior */
.farmacias-table thead {
    /* **IMPORTANTE:** Quitamos background-color de thead. */
    color: #ffffff !important; 
    /* Aplicamos overflow: hidden para que el border-radius de los THs funcione correctamente */
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
    overflow: hidden; 
    display: table-header-group; 
}

/* Celda del encabezado */
.farmacia-header {
    /* **SOLUCIÓN:** Aplicamos el color de fondo directamente a la celda (TH) */
    background-color: #910007 !important; 
    color: #ffffff !important; 
    
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-sm);
    /* Se remueve el borde inferior de la celda, se aplica a la fila (tr) */
    border-bottom: none; 
    text-align: left;
}

/* Aplicar border-radius solo a las esquinas superiores de la primera y última celda */
.farmacias-table thead tr th:first-child {
    border-top-left-radius: var(--border-radius-md);
    padding: 0px 0px 7px 35px;
}
.farmacias-table thead tr th:last-child {
    border-top-right-radius: var(--border-radius-md);
}

/* Fila de datos */
.farmacias-table tbody tr {
    /* Borde inferior para cada fila con el color solicitado */
    border-bottom: 1px solid #910007; 
}

/* La última fila no debe tener borde inferior (para mantener solo el borde exterior del contenedor) */
.farmacias-table tbody tr:last-child {
    border-bottom: none; 
    
}

/* Celda de datos */
.farmacia-data {
    color: var(--color-text-dark);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    font-weight: 400;
    padding: var(--spacing-md) var(--spacing-sm);
    
    border-bottom: none; 
    line-height: 1.5;
}

.farmacia-data:first-child {
    font-weight: 600;
    color: var(--color-primary-blue);
    padding: 9px 0px 7px 35px;
}

/* Paginación */
.farmacias-pagination {
    color: var(--color-text-gray);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    
}

.pagination-info {
    display: flex;
    align-items: center;
    
}


.pagination .page-link {
    color: var(--color-primary-blue);
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
    color: white;
}

.pagination .page-link:hover {
    color: var(--color-dark-blue);
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Responsive para tabla y paginación (Móvil) */
@media (max-width: 767.98px) {
    .farmacias-table-container {
        /* padding: var(--spacing-sm); */
    }
    
    .farmacia-header,
    .farmacia-data {
        padding: var(--spacing-sm) var(--spacing-xs);
        font-size: var(--font-size-xs);
    }
    
    /* En móvil, se apilan los elementos de paginación y se centran */
    .farmacias-pagination {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        justify-content: center; 
    }
    
    .pagination-info {
        justify-content: center;
        order: 1; /* El texto va primero */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .pagination-controls {
        order: 2; /* Los controles van después */
    }
    img.logo-img {
    width: 100%;
}

    img.logo-img1 {
        width: 57% !important;
    }
}






/**Estilos Daniel/



/* Definición de Variables de Color */
:root {
    --primary-red: #da291c;    /* Color rojo de Continúa */
    --light-red-bg: #f8e1e1;   /* Rojo muy claro para el fondo detrás de la imagen (aproximación) */
    --dark-blue: #002855;      /* Azul oscuro para texto de nav y logo (aproximación) */
    --gray-text: #6c757d;      /* Gris para texto general */
    --light-gray-bg: #f8f9fa;  /* Gris muy claro para fondos (sección info) */
    --secondary-blue: #007bff; /* Azul secundario para ícono */
}

/* Estilos Generales */
body {
    font-family: 'Montserrat', sans-serif;
    color: #343a40;
     font-optical-sizing: auto;
  
  font-style: normal;
}

/* --- Estilos de Navegación --- */
.navbar {
background: #ffffff;
background: -webkit-linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
background: linear-gradient(0deg, #0155b9 0%, #ffffff 19%);
    
   
    
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}



.nav-link {
  color: var(--color-black-solid, #000);
/* siegfriedcentroamerica.platinoweb.com/Montserrat/Regular */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-16, 16px);
font-style: normal;
font-weight: var(--font-weight-400, 400);
line-height: var(--line-height-25_6, 25.6px); /* 160% */
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.btn-cuenta {

width: 245px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    border-radius: 25px;
    background: var(--color-grey-35, #565E59);
    color: var(--Colores-Primarios-White, var(--color-white-solid, #FFF));
    text-align: center;
    font-family: var(--font-family-Font-1, Montserrat);
    /* font-size: var(--font-size-23, 23px); */
    font-style: normal;
    font-weight: var(--font-weight-700, 700);
    line-height: var(--font-size-23, 23px);
    display: inline-flex
;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;


  
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    
    transition: background-color 0.3s ease;
}

.btn-cuenta:hover {
  border-radius: 25px;
    border: 2.4px solid var(--color-grey-35, #565E59);
    background: #FFF;
    box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.30);
}

/* --- Sección Hero --- */
.hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-text-content {
    z-index: 10;
    position: relative;
}

.hero-title {
   color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-39, 39px);
font-style: normal;
font-weight: var(--font-weight-600, 600);
line-height: var(--line-height-40, 40px); /* 102.564% */
}

.hero-title span {
    color: #343a40; /* Cambiado a color oscuro del texto, no rojo. */
    position: relative; /* Esencial para posicionar el pseudo-elemento */
    display: inline-block; /* Permite que el ancho se ajuste al texto y que ::after funcione */
}



.info-title span {
    color: #343a40; /* Cambiado a color oscuro del texto, no rojo. */
    position: relative; /* Esencial para posicionar el pseudo-elemento */
    display: inline-block; /* Permite que el ancho se ajuste al texto y que ::after funcione */

    color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));

/* siegfriedcentroamerica.platinoweb.com/Semantic/Heading 2 */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-32, 32px);
font-style: normal;
font-weight: 600;
line-height: var(--line-height-36, 36px);
}

.info-title span::before {
   content: "";
    display: block;
    position: absolute;
    left: 6px;
    width: 95%;
    bottom: 0px;
    height: 2px;
   

    border-top: var(--stroke-weight-2_4, 2.4px) solid var(--color-azure-36, #0155B9);
background: var(--color-white-02, rgba(255, 255, 255, 0.00));
box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.10);
}




.hero-title span::before {
   content: "";
    display: block;
    position: absolute;
    left: 6px;
    width: 95%;
    bottom: 0px;
    height: 2px;
    background-color: var(--primary-red);

    
}


.hero-title span::after {
    content: "";
    display: block;
    position: absolute;
  left: 17px;
    width: 85%;
    bottom: -3px;
    height: 2px;
    background-color: var(--primary-red);
}


/* Estilos para el logo con íconos */
.continua-logo-hero {
  
    max-width: 400px;
}

.logo-banner{
    width: 403px;
height: 253px;
aspect-ratio: 403/253;
}

.continua-logo-hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.continua-logo-hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--gray-text);
}

.icon-pair {
    display: flex;
    position: relative;
    width: 100px;
    height: 100px;
}

.icon-pair svg {
    position: absolute;
    width: 70%;
    height: 70%;
}

.icon-person-blue {
    color: var(--secondary-blue);
    top: 0;
    left: 0;
    transform: translate(0%, 5%);
    z-index: 2;
}

.icon-cross-red {
    color: var(--primary-red);
    bottom: 0;
    right: 0;
    transform: translate(0%, -5%);
    z-index: 1;
}

/* Estilos de la imagen con forma */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; 
    height: 100%;
    overflow: hidden;
   
}

.hero-image {
   
    object-fit: cover;
    object-position: center; 
}

/* --- Sección de Información Inferior --- */
.info-section {
    background-color: white; /* La imagen de fondo tiene un degradado rojo */
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    /* Simulación del degradado de fondo rojo claro */
background: linear-gradient(90deg, #ffffff 39%, rgba(1, 85, 185, 0.30) 67%, #fe5d67 120%);
   
}

.info-title {
   color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-32, 32px);
font-style: normal;
font-weight: 300;
line-height: var(--line-height-36, 36px); /* 112.5% */
}

.info-title strong {
    color: var(--primary-red);
}

.info-text {
   color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
font-family: var(--font-family-Font-1, Montserrat);
font-size: 28px;
font-style: normal;
font-weight: var(--font-weight-400, 400);
line-height: var(--line-height-40, 40px); /* 142.857% */
}


/* --- Flip Cards Section --- */
.flip-cards-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Base de la tarjeta volteable */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 380px; /* Altura fija para las tarjetas */
    perspective: 1000px; /* Necesario para el efecto 3D */
    cursor: pointer;
    
}

/* Contenedor del contenido frontal y trasero */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    
}

/* Cuando se añade la clase 'flipped', gira la tarjeta */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
    
}

/* Posicionamiento del frontal y trasero */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Oculta la parte trasera durante el giro */
    backface-visibility: hidden;
    display: flex; /* Para centrar contenido */
    flex-direction: column;
    justify-content: center;
    align-items: center;
     box-shadow: 4px 9px 24px 2px rgb(0 0 0 / 75%);
}

/* Estilos del frontal de las tarjetas */
.flip-card-front {
    color: white; /* Texto blanco en el frente */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Icono arriba, texto medio, icono abajo */
    padding: 2rem;
    
}

.flip-card-front .refresh-icon-white {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7); /* Opacidad para el icono de refrescar */
}

.flip-card-front .card-title-front {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.icon-heart-hand svg,
.icon-people-group svg {
    color: white; /* Íconos blancos en el frente */
}

/* Estilos de los degradados para el frente */
.card-gradient-blue {
   background: #333333;
background: -webkit-linear-gradient(0deg, #333333 0%, #0155b9 100%);
background: linear-gradient(0deg, #333333 0%, #0155b9 100%);
border-radius: 28.3918px;
     box-shadow: 4px 9px 24px 2px rgb(0 0 0 / 75%);


}

.card-gradient-red {
   background: #333333;
background: -webkit-linear-gradient(0deg, #333333 0%, #a73439 100%);
background: linear-gradient(0deg, #333333 0%, #a73439 100%);
border-radius: 28.3918px;
     box-shadow: 4px 9px 24px 2px rgb(0 0 0 / 75%);


}
.text-hero {
    color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
    font-family: var(--font-family-Font-1, Montserrat);
    font-size: var(--font-size-39, 39px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-40, 40px);
}

/* Estilos del reverso de las tarjetas */
.flip-card-back {
    background-color: white;
    transform: rotateY(180deg); /* Oculta el reverso inicialmente */
    color: #343a40; /* Color de texto oscuro para el reverso */
    text-align: left;
    padding: 2rem;
    justify-content: flex-start; /* Contenido alineado al inicio */
    align-items: flex-start;
    border-radius: 28.3918px;


}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-back .refresh-icon-dark {
    font-size: 1.5rem;
    color: var(--gray-text);
}

.flip-card-back .hand-icon-red,
.flip-card-back .people-icon-blue {
    font-size: 1.8rem; /* Tamaño de los íconos de la parte trasera */
    margin-left: 0.5rem;
}

.flip-card-back .hand-icon-red {
    color: var(--primary-red); /* Rojo para el icono de mano */
}

.flip-card-back .people-icon-blue {
    color: var(--secondary-blue); /* Azul para el icono de gente */
}

.flip-card-back h4.card-subtitle-back {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-text); /* Color para el "Apoyo para" */
}

.flip-card-back ol,
.flip-card-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    margin-left: 5%;
}

.flip-card-back ol li {
    margin-bottom: 0.5rem;
}

/* --- Sección del Botón Central --- */
.action-button-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.btn-primary-outline {

color: var(--color-grey-35, #565E59);
text-align: center;
font-family: var(--font-family-Font-1, Montserrat);
font-size: 20.225px;
font-style: normal;
font-weight: 400;
line-height: 32.36px; /* 160% */


    border: 2px solid var(--gray-text); /* Borde gris claro */
   
   

 
    padding: 0.8rem 2.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-primary-outline:hover {
  border-radius: 31.602px;
border: 2.4px solid var(--color-azure-36, #0155B9);
background: #FFF;
color: var(--color-azure-36, #0155B9);
text-align: center;
font-family: var(--font-family-Font-1, Montserrat);
font-size: 20.225px;
font-style: normal;
font-weight: 700;
line-height: 32.36px; /* 160% */
/* M3/Elevation Light/5 */
box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.30);
}

/* --- Sección de Tarjetas de Información --- */
.info-cards-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.info-card {
border-radius: 16px !important; 
border-top: 2.4px solid var(--color-black-106, rgba(0, 0, 0, 0.11)) !important;
background: var(--color-black-106, rgba(0, 0, 0, 0.11)) !important;
box-shadow: 6px 7px 4px 0 rgba(1, 85, 185, 0.25) !important;
    border: none;
}

.info-card .card-body {
    position: relative;
}

.info-card-icon-container {
    flex-shrink: 0; /* Evita que el contenedor del icono se encoja */
}

.info-card-icon-container svg {
    color: var(--dark-blue); /* Color del icono */
    font-size: 3.5rem; /* Tamaño del icono */
}

.info-card-content {
    position: relative;
    padding-left: 1.5rem; /* Espacio para la línea vertical */
}

/* Línea vertical roja a la izquierda del contenido del texto */
.info-card-content::before {
    content: '';
    position: absolute;
    top: 5px; /* Ajusta la posición vertical del inicio de la línea */
    left: 0;
    width: 3px; /* Ancho de la línea */
    height: calc(100% - 10px); /* Altura de la línea, ajusta si es necesario */
    background-color: var(--primary-red);
    border-radius: 2px; /* Bordes ligeramente redondeados */
    height: 195px;
}


.info-card-title {
   color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));

/* siegfriedcentroamerica.platinoweb.com/Semantic/Heading 2 */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-32, 32px);
font-style: normal;
font-weight: 400;
line-height: var(--line-height-36, 36px);
}

.info-card-title span {
    font-weight: 700 !important; /* Texto "participantes" o "afiliadas" en negrita */
}

.info-card-text {
  color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
font-family: var(--font-family-Font-1, Montserrat);
font-size: 24px;
font-style: normal;
font-weight: var(--font-weight-400, 400);
line-height: var(--line-height-40, 40px); /* 166.667% */
}
.fw-bold-home{
color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));

/* siegfriedcentroamerica.platinoweb.com/Semantic/Heading 2 */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-32, 32px);
font-style: normal;
font-weight: 600;
line-height: var(--line-height-36, 36px); /* 112.5% */
}
/* Botones dentro de las tarjetas */
.btn-outline-primary-red {
    border-radius: 31.602px;
border: 2.4px solid var(--color-red-68, #FE5D67);
background: #FFF;
    margin-left: 11%;
    color: var(--color-red-68, #FE5D67);
text-align: center;

/* siegfriedcentroamerica.platinoweb.com/Montserrat/SemiBold */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-13, 13px);
font-style: normal;
font-weight: var(--font-weight-600, 600);
line-height: var(--line-height-20_8, 20.8px); /* 160% */
}

.btn-outline-primary-red:hover {
    border-radius: 31.602px;
border: 2.4px solid var(--color-azure-36, #0155B9);
background: #FFF;
color: var(--color-azure-36, #0155B9);
text-align: center;




/* M3/Elevation Light/5 */
box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.30);
}

/* --- Sección del Footer --- */
.main-footer {
    background-color: #eef3f8; /* Color de fondo gris azulado (aproximado) */
    color: #343a40; /* Color de texto oscuro general */
    position: relative;
    overflow: hidden; /* Necesario para el borde lateral */
}
/* Modificación de la columna de Navegación */
.navigation-col {
    position: relative; /* Mantener por si acaso, aunque ya no se necesita para los pseudo-elementos */
    
    /* ***** NUEVOS ESTILOS SOLICITADOS ***** */
    border-radius:0px 0px 0px 16px; /* Radio de 16px solo en la esquina inferior derecha */
    border-left: 2.4px solid #0155B9; /* Borde vertical a la derecha */
    border-bottom: 2.4px solid #0155B9; /* Borde horizontal abajo */
    /* Usando --dark-blue ya definido en :root, que es #002855, 
       cercano a #0155B9 */
    
    padding-right: 15px; /* Añade padding para separar el texto del borde derecho */
}

/* Nota: Asegúrate de que tu variable --dark-blue en :root sea similar a #0155B9 */
/* Si quieres usar el color exacto, define una nueva variable o úsalo directamente: */
/*
:root {
    --primary-blue-border: #0155B9;
    ...
}
.navigation-col {
    ...
    border-right: 2.4px solid var(--primary-blue-border); 
    border-bottom: 2.4px solid var(--primary-blue-border);
}
*/


/* MANTENER ESTO PARA LA RESPONSIVIDAD (asegúrate de que el padding-left sea 0 en móviles) */
@media (max-width: 767.98px) {
    .main-footer::before {
        width: 100%; 
        height: 10px; 
        clip-path: none;
    }
    .footer-col {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    /* Desactivar los bordes en móviles para que no se vea raro al apilar */
    .navigation-col {
        border-right: none;
        border-bottom: none;
        border-radius: 0;
    }
}



.footer-col {
    padding-left: 4%;  
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue); /* Título en azul oscuro */
    margin-bottom: 1rem;
}

/* Estilos de los enlaces de Navegación y Legal */
.footer-nav-list a,
.legal-list a {
    color: #343a40;
    text-decoration: none;
    line-height: 2.2;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover,
.legal-list a:hover {
    color: var(--primary-red);
}

/* Estilos de Contacto (Teléfonos) */
.contact-col p {
    font-weight: 600;
    color: #343a40;
}

.contact-list li {
    font-size: 1rem;
    line-height: 2;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 50px; 
    height: auto;

}

footer .flag-icon {
    width: 24px; 
    height: auto;

}

/* Estilos de Logos */
.footer-logo {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05)); /* Sombra sutil si es necesario */
}

/* Derechos Reservados */
.copyright-text p {
    font-size: 0.9rem;
    color: var(--gray-text);
  margin-top: -1rem;
    
}






/* --- Sección del Formulario Wizard --- */
.wizard-form-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.gradient-border {
  position: relative;
  border-radius: 15px; /* igual al borde del formulario */
  background: linear-gradient(white, white) padding-box,
              linear-gradient(-180deg, #d4145a, #3a7bd5) border-box; /* degradado */
  border: 2px solid transparent;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.wizard-container {
    background-color: white;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden; /* Para el borde superior */
}

/* Borde superior rojo y azul */
.wizard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px; /* Altura de la barra de color */
   background: linear-gradient(180deg, #FE5D67 0%, var(--color-azure-36, #0155B9) 100%);
    border-radius: 8px ; /* Bordes redondeados en las esquinas superiores */
}

.wizard-title {
   font-family: var(--font-family-Font-1, Montserrat);
font-size: 39px;
font-style: normal;
font-weight: 700;
line-height: var(--line-height-36, 36px); /* 92.308% */
background: linear-gradient(90deg, var(--color-azure-36, #0155B9) 0%, var(--color-grey-35, #0155B9) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.Tittle-form{
background: linear-gradient(90deg, var(--color-azure-36, #0155B9) 0%, var(--color-grey-35, #565E59) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: var(--font-family-Font-1, Montserrat);
font-size: 39px;
font-style: normal;
font-weight: 400;
line-height: var(--line-height-36, 36px);
    
}
.wizard-title span {
    color: var(--dark-blue); /* Color azul para "inscripción para pacientes" */
}

.wizard-description {
   color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));

/* siegfriedcentroamerica.platinoweb.com/Montserrat/Regular */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-16, 16px);
font-style: normal;
font-weight: var(--font-weight-400, 400);
line-height: var(--line-height-25_6, 25.6px); /* 160% */
}






/* --- Estilos del Stepper (Barra de Progreso) --- */

/* --- Estilos para el Icono de Check en el Stepper --- */

/* 1. Estilos base del stepper item (ajuste según su diseño actual) */
/* Reemplace 'stepper-item-circle' o similar con el selector de su círculo */
.stepper-item {
    /* Asegúrese de que el contenedor de los números sea posicionado */
    position: relative; 
}

/* 2. Estilo para el estado 'COMPLETED' (Círculo Azul con Check) */
.stepper-item.completed {
    /* Opcional: Cambiar el color de la línea si su stepper usa líneas */
    /* background-color: #007bff; */ 
}

/* 3. Reemplazar el número con el icono de check */
/* Este selector asume que el número del paso está en el pseudo-elemento ::before o en un elemento interno con una clase específica. Ajuste según su HTML. */
.stepper-item.completed::before,
.stepper-item.completed .step-number-container { 
    
    /* Oculta el número original (o su contenedor) */
    content: ''; 
    
    /* Reajuste si usa un elemento interno */
    /* display: none; */ 
}

/* Usar un pseudo-elemento para mostrar el check */
.stepper-item.completed::after {
   content: '\2713';
    background-color: #0155B9;
    color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    z-index: 10;
}

/* Estilo del círculo por defecto (ajústalo a tus tamaños si es necesario) */
.stepper-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0; /* color por defecto */
  color: #222;
}

/* Estilo del círculo COMPLETADO: azul con check blanco */
.stepper-number.completed-circle {
  background-color: #1E64C8 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
}

/* Oculta cualquier icono/numero interno si necesitas (ajusta selector según tu HTML) */
.stepper-number .inner,
.stepper-number i {
  display: inline-block;
}


.stepper-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
   
}

.stepper-wrapper::before {
    content: '';
    position: absolute;
    top: 80%;
    left:16%;
    right:16%;
    height: 2px;
    background-color: #e0e0e0; /* Color de la línea de progreso inactiva */
    transform: translateY(-50%);
    z-index: 0;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-counter {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0; /* Color del círculo inactivo */
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* Estilos para el paso activo */
.stepper-item.active .step-counter {
    background-color: white;
    color: #0155B9;
    border-color: #0155B9;
    box-shadow: 0 0 0 3px rgba(var(--primary-red-rgb), 0.2); /* Resplandor rojo */
}

/* --- Estilos de los Pasos del Formulario --- */
.wizard-step {
    display: none; /* Oculta todos los pasos por defecto */
}

.wizard-step:first-child {
    display: block; /* Muestra el primer paso */
}

.step-heading {
   color: #000;

/* siegfriedcentroamerica.platinoweb.com/Semantic/Heading 2 */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-23, 23px);
font-style: normal;
font-weight: var(--font-weight-700, 700);
line-height: var(--line-height-28, 28px); /* 121.739% */
}





.form-label {
  color: #000;

/* siegfriedcentroamerica.platinoweb.com/Montserrat/SemiBold */
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-15, 15px);
font-style: normal;
font-weight: 600;
line-height: var(--line-height-24, 24px); /* 160% */
}

/* Estilo del Switch (Sí/No) */
.form-check-label .switch-label-si {
    color: var(--dark-blue);
    font-weight: bold;
    margin-right: 0.2rem;
}

.form-check-label .switch-label-no {
    color: var(--gray-text);
    margin-left: 0.2rem;
}

.form-check-input:checked ~ .form-check-label .switch-label-si {
    color: var(--primary-red); /* Color cuando está en "Sí" */
}

.form-check-input:checked ~ .form-check-label .switch-label-no {
    color: var(--gray-text); /* Asegura que "No" se mantenga gris */
}



.form-switch .form-check-input

 {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    width: 2em;
    margin-left: -2.5em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s 
ease-in-out;
    background-color: #0155B9;
    border-color: #0155B9;
    border-radius: 12px;
}

/* --- Estilos de Botones de Navegación del Wizard --- */


.wizard-btn-next:hover {
    /* Mantiene el color blanco del texto al hacer hover */
    color: white; 
    
    /* El valor de --bs-btn-hover-color no es necesario si defines color: white */
    /* color: var(--bs-btn-hover-color); */
    
    /* Color de fondo y borde para el efecto hover */
    background: #565E59;
    border-color: #565E59;
    
    /* Propiedades de diseño que deben replicarse o ajustarse en hover */
    display: flex;
    padding: 12.641px 37.922px;
    align-items: center;
    gap: 12.641px;
    border-radius: 31.602px;
    border: none;
    font-weight: 600;
}

.btn-primary-blue {
   display: flex
;
    padding: 12.641px 37.922px;
    align-items: center;
    gap: 12.641px;
    border-radius: 31.602px;
    background: var(--color-azure-36, #0155B9);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-primary-blue:hover {
    background-color: #565E59; 
    border-color: #565E59;
    color: white;
}

.btn-outline-primary-light-blue {
    border: 1px solid var(--dark-blue); /* Borde azul oscuro */
    color: var(--dark-blue); /* Texto azul oscuro */
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-primary-light-blue:hover {
    background-color: var(--dark-blue);
    color: white;
}

.wizard-btn-prev{
border-radius: 31.602px;
border: 2.4px solid var(--color-azure-36, #0155B9) !important;
opacity: 0.5;
color: var(--color-azure-36, #0155B9) !important;
text-align: center;
font-family: var(--font-family-Font-1, Montserrat);
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 32.36px; /* 202.251% */
}


.wizard-btn-next{
    display: flex
;
    padding: 12.641px 37.922px;
    align-items: center;
    gap: 12.641px;
    border-radius: 31.602px;
    background: var(--color-azure-36, #0155B9);
    border: none;
    color: white;
    font-weight: 600;
}


.form-check-input[type=checkbox]

 {
    border-radius: 16px !important;
}

.form-check-input:checked {
    background-color: #FE5D67;
    border-color: #FE5D67;
    border-radius: 12px;
}





/* --- Estilos del Paso 4 (Tabla y Botones) --- */

/* Estilo para el botón de Agregar Medicamento */
.btn-secondary-light-gray {
    border-radius: 25px;
border: 2.4px solid var(--color-grey-35, #565E59);
background: #FFF;

/* M3/Elevation Light/5 */
box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.30);
color: var(--color-grey-35, #565E59);
text-align: center;
font-family: var(--font-family-Font-1, Montserrat);
font-size: var(--font-size-16, 16px);
font-style: normal;
font-weight: 700;
line-height: var(--line-height-25_6, 25.6px); /* 160% */
}

.btn-secondary-light-gray:hover {
   display: inline-flex;
padding: 10px 30px;
align-items: center;
gap: 10px;
border-radius: 25px;
background: var(--color-grey-35, #565E59);
color: white;
}

/* Estilos de la tabla */



.medicine-table-container {
    background: white;
    border-radius: var(--border-radius-md);
  
    overflow-x: auto;
}

.medicine-list-table thead th {
    background-color:#0155B9;
    color: white;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    border: none;
    font-size: 0.9rem;
}

.medicine-list-table tbody td {
    vertical-align: middle;
    font-size: 0.9rem;
    padding: 0.5rem;
}

/* Estilo para el enlace de "Agregar otro medicamento" */
.text-primary-blue-link {
  border-radius: 25px;
border: 2.4px solid var(--color-grey-35, #565E59);
background: #FFF;

/* M3/Elevation Light/5 */
box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.30);
}

.text-primary-blue-link:hover {
    color: var(--primary-red);
}



/* --- Estilos del Paso 4 (Tabla y Botones) --- */

/* 1. Encabezado de la Tabla (Table Header) */
.medicine-list-table thead {
    /* Fondo Azul Oscuro como en la imagen */
    background-color: var(--dark-blue, #002855); 
}

.medicine-list-table thead th {
    color: white; /* Texto blanco */
    font-weight: 600; /* Negrita */
    padding: 0.75rem 0.5rem;
    border: none;
    font-size: 0.95rem;
    
    /* Asegura que el texto esté centrado si es necesario, aunque en la imagen está a la izquierda */
    text-align: left;
    
    /* Pequeños ajustes para esquinas redondeadas en el encabezado (Opcional) */
    /*
    &:first-child { border-top-left-radius: 8px; }
    &:last-child { border-top-right-radius: 8px; }
    */
}

/* 2. Cuerpo de la Tabla (Table Body) */
.medicine-list-table {
    border-collapse: separate;
    border-spacing: 0;
    /* Borde ligero en la parte inferior para separar de los controles */
    border-bottom: 1px solid #dee2e6; 
}

.medicine-list-table tbody td {
    vertical-align: middle;
    font-size: 0.9rem;
    padding: 0.8rem 0.5rem;
    color: #495057; /* Color de texto gris oscuro */
    border-top: 1px solid #e9ecef; /* Separador de fila ligero */
}

/* Estilo para las filas pares (Striped, opcional) */
.medicine-list-table tbody tr:nth-child(even) {
    /* background-color: #f8f9fa; */ 
}

/* Estilo para el mensaje de tabla vacía */
#emptyRowMessage td {
    font-style: italic;
    color: #6c757d !important;
    text-align: center;
}

/* Estilo del botón de Eliminar (Mantener) */
.btn-outline-danger {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
}





/* --- Estilos para el Pie de Página (Paginación) --- */

.table-footer-controls {
    display: flex;
    justify-content: flex-end; /* Alinear a la derecha como en la imagen */
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.rows-per-page-label {
    font-weight: 500;
}

/* Estilo para el Select de Rows per page */
.table-footer-controls .form-select-sm {
    width: 70px !important;
    padding: 0.2rem 0.5rem;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 4px;
}

/* Estilo para la información de paginación (ej: 1 - 10 of 14) */
.pagination-info {
    font-weight: 500;
}

/* Estilo para los botones de < y > */
.table-footer-controls .btn-sm {
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.table-footer-controls {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.table-footer-controls .form-select-sm {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.modal-header {
   
     border-bottom:none;
 
}


.primary-blue {


    display: flex
;
    padding: 12.641px 37.922px;
    align-items: center;
    gap: 12.641px;
    border-radius: 31.602px;
    background: var(--color-azure-36, #0155B9);
    border: none;
    color: white;
    font-weight: 600;
}


.modal-footer {
   
     border-top:none;
 
}



/* Media Queries para responsividad */
@media (max-width: 767.98px) {
    .stepper-wrapper {
        padding: 0;
        margin-bottom: 3rem !important;
    }






    .step-counter {
        width: 50px;
        height:50px;
        font-size: 0.8rem;
    }



    .stepper-item.completed::after {
        width: 50px;
        height: 50px;
        
    }
   
    .wizard-description {
        font-size: 0.85rem;
    }
    .step-heading {
        font-size: 1.2rem;
    }
    .form-label {
        font-size: 0.9rem;
    }
    .btn-primary-blue,
    .btn-outline-primary-light-blue {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .info-card-text {
  
        line-height: var(--line-height-40, 28px);
    }

    .main-footer {
       
        text-align: center;
    }
    .mobile-blue-border {
        border-left: 3px solid #0155B9 !important;
        border-bottom: 3px solid #0155B9 !important;
        padding-left: 21px !important;
        padding-bottom: 17px;
        border-bottom-left-radius: 20px;
       
       
    }

    .contact-list {
        margin-left: -1px !important;
    }

    }
  
    /* Derechos Reservados */
    .copyright-text p {
        font-size: 0.9rem;
        color: var(--gray-text);
        margin-top: 1rem;
    }
    

.logo-banner {
    width: auto;
    height: auto;
    aspect-ratio: 403 / 253;
}
    
}



/* --- Media Queries para Responsividad --- */
@media (max-width: 767.98px) {
    .main-footer::before {
        width: 100%; /* El borde azul cubre todo el ancho en móviles */
        height: 10px; /* Se convierte en una línea superior */
        clip-path: none;
    }
    .footer-col {
        padding-left: 0;
        padding-top: 1rem;
    }
    .logo-col {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .footer-logo {
        margin-left: 0;
    }
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 767.98px) {
    .action-button-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .btn-primary-outline {
        font-size: 1rem;
        padding: 0.7rem 2rem;
    }
    .info-cards-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .info-card-icon-container svg {
        font-size: 3rem;
    }
    .info-card-title {
        font-size: 1.4rem;
    }
    .info-card-text {
        font-size: 0.9rem;
    }
    .btn-outline-primary-red {
  
    padding: 0.6rem 0.5rem;
    
    margin-left: 0%;
}
}

/* Media Queries para responsividad */
@media (max-width: 767.98px) {
    .flip-card {
        height: 420px; /* Ajusta la altura en móviles si el contenido es mucho */
    }
    .flip-card-front .card-title-front {
        font-size: 1.5rem;
    }
    .flip-card-back h4.card-subtitle-back {
        font-size: 1.1rem;
    }
    .flip-card-back ol,
    .flip-card-back p {
        font-size: 0.9rem;
    }
}
/* --- Media Queries (Responsividad) --- */
@media (max-width: 991.98px) {
    .hero-image-container {
        /* Desactiva la forma en móviles y la hace responsive */
        width: 100%;
        height: 350px; 
        position: relative;
        clip-path: none;
        margin-top: 2rem;
        background-color: transparent;
    }
    .hero-image {
        border-radius: 10px;
    }
    .hero-section {
        padding-bottom: 2rem;
        min-height: auto;
    }
    .hero-title {
        font-size: 34px;
      
    }

    .text-hero {
        color: var(--siegfriedcentroamerica-platinoweb-com-shark, var(--color-azure-13, #1C1F24));
        font-family: var(--font-family-Font-1, Montserrat);
     
        font-style: normal;
        font-weight: 400;
      
         font-size: 28px !important;
    }



    .continua-logo-hero {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 220px;
    }
    .icon-pair {
        margin-left: auto;
        margin-right: auto;
    }

  


    .faqs-image-container {
    
        width: 100%;
       

    }

        .faqs-image-container.sticky {
            position: static;
            top: 16%;
            bottom: auto;
        }


    .stepper-wrapper::before {
        content: '';
        position: absolute;
        top: 58%;
        
        height: 2px;
        background-color: #e0e0e0;
        transform: translateY(-50%);
        z-index: 0;
    }

    .text-terms-responsive h3{
        font-size:20px;

    }
    .text-terms-responsive h4 {
        font-size: 18px;
    }
    .text-terms-responsive p {
        font-size: 12px;
    }

}



.bi-telephone-fill::before {
    content: "\f5b4";
    color: black;
}

/**Modales*/

.modal-content {
   
    background-color: #daebff;
   
}

.modal-custom-bg {
    background-color: #daebff !important;
}

.modal-logo {
    max-width: 200px;
    margin: 0 auto 1.5rem;
    display: block;
}

.modal-custom-bg {
    background-color: #daebff !important;
}

.modal-logo {
    max-width: 200px;
    margin: 0 auto 1.5rem;
    display: block;
}

.icon-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
/* .icon-warning {
            background-color: rgba(255, 193, 7, 0.1);
        } */
.icon-warning i {
    color: #ffc107;
    font-size: 4rem;
}

/*flecha modal hacia abajo*/
.arrow-down-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeBlink 2s infinite;
}

.arrow-down {
    width: 24px;
    height: 24px;
    border-left: 3px solid #4194D0;
    border-bottom: 3px solid #4194D0;
    transform: rotate(-45deg);
    margin-top: 10px;
    animation: bounce 1.5s infinite;
}

/* Animación del movimiento hacia abajo */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(8px) rotate(-45deg);
    }

    60% {
        transform: translateY(4px) rotate(-45deg);
    }
}

/* Efecto de parpadeo */
@keyframes fadeBlink {
    0%, 50%, 100% {
        opacity: 1;
    }
