/* --- VARIABLES GLOBALES --- */
:root {
    --font-main: 'Inter', sans-serif;
    --color-primary: #005eb8;
    --color-primary-hover: #00a8d4;
    --color-green: #00c49a;
    --color-text-dark: #191c1d;
    --color-text-muted: #475569;
    --color-bg-glass: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-dropdown: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --color-gradient: linear-gradient(135deg, var(--color-primary) 0%, var(--color-green) 100%);
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* --- HEADER PRINCIPAL --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    /* Centra la imagen verticalmente */
    justify-content: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    max-height: 40px;
    /* Ajusta este valor al tamaño que desees para tu navbar */
    width: auto;
    /* Evita que la imagen se deforme */
    filter: drop-shadow(3px 3px 5px #ffffff);
    /* Mantiene la proporción de la imagen */
    object-fit: contain;
}

/* --- NAVEGACIÓN DESKTOP --- */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-link:hover {
    color: var(--color-primary);
}

.icon-small {
    font-size: 1.2rem;
}

/* --- DROPDOWN DESKTOP --- */
.dropdown {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: var(--shadow-dropdown);
    border-radius: 0.5rem;
    min-width: 250px;
    padding: 1rem 0;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f1f5f9;
    color: var(--color-primary);
}

.dropdown-menu .separator {
    height: 1px;
    background-color: #e2e8f0;
    margin: 0.5rem 0;
}

.dropdown-menu .view-all {
    font-weight: 700;
    color: var(--color-primary);
}

/* --- BOTÓN CONTACTO --- */
.btn-contacto {
    background: var(--color-gradient);
    padding: 0.8rem 2rem;
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 63, 135, 0.2);
    display: inline-block;
}

.btn-contacto:hover {
    transform: scale(1.05);
}

.btn-contacto:active {
    transform: scale(0.95);
}

/* --- ELEMENTOS MÓVILES OCULTOS EN DESKTOP --- */
.mobile-spacer,
.hamburger-btn,
.mobile-menu-overlay {
    display: none;
}

/* ========================================================
   HERO CAROUSEL (Banner Principal)
   ======================================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Ocupa el 100% del alto de la pantalla */
    height: 100dvh;
    /* Soporte para móviles modernos */
    overflow: hidden;
    background-color: var(--color-primary);
    /* Fondo de respaldo */
}

/* --- SLIDES --- */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Imagen de fondo con efecto de zoom suave */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-img {
    transform: scale(1);
    /* Efecto Ken Burns muy sutil */
}

/* Capa de color sobre la imagen (Gradiente azul como en tu foto) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    opacity: 0.4;
    z-index: 2;
}

/* Contenido de texto */
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.8s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
    /* Sube suavemente al aparecer */
}

.slide-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-fixed-dim, #acc7ff);
    margin-bottom: 1rem;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    text-wrap: balance;
    /* Equilibra el texto para que no queden palabras sueltas */
}

/* --- BOTONES DEL BANNER --- */
.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    /* En móviles se pondrán uno abajo del otro si no hay espacio */
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* --- CONTROLES (Flechas y Puntos) --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    width: 30px;
    /* Se estira para indicar la activa */
    border-radius: 10px;
}


/* ========================================================
   SECCIÓN: BIENESTAR (Obra Social & Tarjetas)
   ======================================================== */
.value-section {
    background-color: #f8f9fa;
    /* Fondo gris muy clarito */
    padding: 6rem 2rem;
    width: 100%;
}

.value-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Espacio entre las tarjetas y el texto derecho */
}

/* --- GRID DE TARJETAS (Izquierda) --- */
.value-grid {
    flex: 1;
    /* Ocupa la mitad del espacio */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas */
    gap: 1.5rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    /* Bordes bien redondeados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Sombra súper suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 63, 135, 0.08);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--color-primary);
    /* Azul de ADICIO */
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- CONTENIDO DE TEXTO (Derecha) --- */
.value-content {
    flex: 1;
    /* Ocupa la otra mitad del espacio */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-content h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text-dark);
    text-wrap: balance;
}

.value-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- CAJA DESTACADA (Highlight Box) --- */
.highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f1f5f9;
    /* Gris azulado muy suave */
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.highlight-box i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.highlight-box span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================================
   FILA DE BOTONES (Hero / Secciones principales)
   ======================================================== */
.hero-botones-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Separación entre los botones */
    margin-top: 2rem;
    /* Espacio hacia arriba, ajústalo según necesites */
    flex-wrap: wrap;
    /* Permite que si la pantalla es muy chica, el segundo botón baje solo */
}

/* ========================================================
   SECCIÓN: KIT DE BIENESTAR TECNOLÓGICO (Index)
   ======================================================== */
.tech-kit-section {
    background-image: var(--color-gradient);
    /* Azul oscuro corporativo */
    color: #ffffff;
    padding: 7rem 2rem;
    width: 100%;
}

.tech-kit-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- Encabezado --- */
.tech-kit-header {
    margin-bottom: 4rem;
}

.tech-tag {
    background-color: rgba(255, 255, 255, 0.15);
    /* Blanco semi-transparente */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tech-kit-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.tech-kit-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    /* Un poco de transparencia para no saturar */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grilla de Dispositivos (Flexbox para las 5) --- */
.tech-devices-grid {
    display: flex;
    flex-wrap: wrap;
    /* Permite que pasen a la línea de abajo si no hay lugar */
    justify-content: center;
    /* Centra las tarjetas siempre */
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.device-card {
    background-color: #ffffff;
    /* Tarjeta blanca */
    color: var(--color-text-dark);
    /* Texto oscuro para contrastar */
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    flex: 1 1 200px;
    /* Crecen y se achican, base 200px */
    max-width: 250px;
    /* Ancho máximo para que no se estiren de más */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
}

.device-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f5f9;
    /* Gris muy clarito */
    color: var(--color-primary);
    /* Azul */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.device-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.device-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- Banner Bonificado --- */
.tech-bonus-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
}

.tech-bonus-banner i {
    font-size: 1.2rem;
}



/* PLANES */
/* ========================================================
   SECCIÓN: PLANES DE SERVICIO
   ======================================================== */
.planes-section {
    background-color: #f8f9fa;
    /* Continuamos con el fondo gris claro */
    padding: 6rem 2rem;
    width: 100%;
}

.planes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.planes-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.planes-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.planes-btn {
    text-align: center;
    margin: 4rem auto 0 auto;
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- GRID DE PLANES --- */
.planes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    /* Asegura que todas las tarjetas midan lo mismo de alto */
}

/* --- TARJETA BASE --- */
.plan-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Empuja los botones hacia abajo */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 15px 30px rgba(0, 63, 135, 0.08);
}

/* --- TARJETA DESTACADA (Intermedio) --- */
.plan-highlight {
    border: 3px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), var(--color-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 63, 135, 0.15);
    z-index: 10;
    border-radius: 1.5rem;
}

.plan-highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-gradient);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- CONTENIDO INTERNO --- */
.plan-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.text-blue {
    color: var(--color-primary);
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* --- LISTA DE CARACTERÍSTICAS --- */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.feature-icon {
    color: #10b981;
    /* Verde esmeralda para los tildes */
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

/* --- BOTONES DE LA TARJETA --- */
.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.btn-plan-outline {
    display: block;
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;

    /* 1. Color del texto */
    color: var(--color-primary);

    /* 2. Borde transparente para hacerle lugar al gradiente */
    border: 2px solid transparent;

    /* 3. El truco: Fondo blanco adrentro, Gradiente en el borde */
    /* Reemplaza #00c6ff por el cyan que estés usando si es necesario */
    background-image: linear-gradient(#ffffff, #ffffff), var(--color-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Efecto Hover: Rellenamos todo el botón con el gradiente y pasamos la letra a blanco */
.btn-plan-outline:hover {
    color: #ffffff;
    /* Al poner el mismo gradiente en ambas capas, el botón se "pinta" entero */
    background-image: var(--color-gradient), var(--color-gradient);
    transform: translateY(-2px);
    /* Un pequeño saltito para darle vida */
    box-shadow: 0 8px 20px rgba(0, 63, 135, 0.2);
}

/* Cuando el botón tiene hover, forzamos a que el texto gradient se vuelva blanco sólido */
.btn-plan-outline:hover,
.btn-plan-outline.gradient:hover,
.btn-plan-outline:hover .gradient {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.btn-plan-solid {
    display: block;
    width: 100%;
    padding: 1rem;
    color: #ffffff;
    background-image: var(--color-gradient);
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 63, 135, 0.2);
}

.btn-plan-solid:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-plan-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.btn-plan-text:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* STORYTELLING */

.experience-section {
    background: var(--color-gradient);
    color: #ffffff;
    padding: 6rem 2rem;
    width: 100%;
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* --- CONTENIDO DE TEXTO (Izquierda) --- */
.experience-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.experience-content h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.experience-desc {
    font-size: 1.1rem;
    color: #ffffff;
    /* Un azul clarito para el texto descriptivo */
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Lista de características (Ícono + Texto) */
.experience-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.exp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

/* Cajita para el ícono */
.exp-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Fondo semi-transparente */
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-icon-box i {
    font-size: 1.2rem;
    color: #ffffff;
}

.exp-text-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.exp-text-box p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Botón Blanco Secundario */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--color-primary);
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* --- IMAGEN (Derecha) --- */
.experience-image {
    flex: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Sombra oscura para darle profundidad */
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Si quieres que la imagen tenga un alto específico, puedes usar aspect-ratio: 16/9; u otro valor */
}

/* ========================================================
   SECCIÓN: COMPARACION
   ======================================================== */
.comparativa-section {
    background-color: #f8f9fa;
    /* Fondo gris muy clarito */
    padding: 6rem 2rem;
    width: 100%;
}

.comparativa-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.comparativa-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.comparativa-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* --- CONTENEDOR DE LA TABLA --- */
.table-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    /* Sombra suave */
    overflow-x: auto;
    /* Permite scroll horizontal en móviles */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- ESTILOS DE LA TABLA --- */
.comparativa-table {
    width: 100%;
    min-width: 700px;
    /* Asegura que la tabla no se aplaste en celulares */
    border-collapse: collapse;
    text-align: left;
}

/* Celdas generales */
.comparativa-table th,
.comparativa-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    /* Línea separadora sutil */
}

/* Quitar la línea inferior a la última fila */
.comparativa-table tbody tr:last-child td {
    border-bottom: none;
}

/* Cabecera (Header) */
.comparativa-table thead {
    background-color: #f1f5f9;
    /* Fondo gris claro para los títulos */
}

.comparativa-table th {
    font-weight: 800;
    color: var(--color-text-dark);
    font-size: 1.1rem;
}


/* Columna 1: Características */
.col-caracteristica {
    font-weight: 800;
    color: var(--color-text-dark);
    width: 25%;
}

/* Columna 2: Tradicional */
.col-tradicional {
    color: var(--color-text-muted);
    width: 35%;
}

/* Columna 3: Modelo ADICIO */
.col-adicio {
    font-weight: 700;
    color: var(--color-text-dark);
    background-color: rgba(0, 63, 135, 0.02);
    /* Fondo apenas tintado de azul */
    width: 40%;
}

/* ========================================================
   SECCIÓN:  APP
   ======================================================== */
.app-section {
    background-color: #ffffff;
    /* Gris sutilmente diferente para separar secciones */
    padding: 6rem 2rem;
    width: 100%;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

/* --- IMAGEN (Izquierda) --- */
.app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-mockup {
    max-width: 100%;
    width: 320px;
    /* Ancho típico de un mockup de teléfono */
    height: auto;
    border-radius: 2.5rem;
    /* Bordes muy redondeados si usas una foto cuadrada */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Sombra para que el teléfono "flote" */
}

/* --- CONTENIDO (Derecha) --- */
.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.app-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Características (Grid 2 columnas) */
.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-feature-item i {
    font-size: 1.5rem;
}

.app-feature-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
}

.app-feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* --- BOTONES OSCUROS --- */
.app-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--color-gradient);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    /* Bordes un poco más cuadrados como en la imagen */
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}


/* ========================================================
   SECCIÓN: INSTITUCIONES
   ======================================================== */
.partners-section {
    background-color: #ffffff;
    /* Gris muy sutil, como en tu imagen */
    padding: 4rem 0;
    overflow: hidden;
    width: 100%;
}

.partners-header {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Contenedor principal del carrusel */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* Efecto de difuminado en los bordes para que no se corte de golpe */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #f4f5f6 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #f4f5f6 0%, transparent 100%);
}

/* La pista que se anima */
.marquee-track {
    display: inline-flex;
    align-items: center;
    /* La animación dura 25 segundos, es lineal y se repite infinitamente */
    animation: scroll-marquee 25s linear infinite;
}

/* Opcional: Si el usuario pasa el mouse, el carrusel se pausa */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Cada logo individual */
.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    /* Ancho en escritorio (entran 4 o 5 en pantalla) */
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

/* Si en el futuro usas imágenes, esto las mantendrá proporcionadas */
.partner-logo img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

/* Animación (Mueve la pista exactamente a la mitad, y como está duplicada, no se nota el salto) */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================================
   SECCIÓN: AVAL INSTITUCIONAL (AGE)
   ======================================================== */
.trust-badge-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    /* Fondo blanco para que la tarjeta destaque */
    width: 100%;
}

.trust-container {
    max-width: 1000px;
    /* Un poco más angosto para que la lectura sea cómoda */
    margin: 0 auto;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    background: var(--color-gradient);
    /* Gris súper clarito y elegante */
    padding: 3rem 4rem;
    border-radius: 1.5rem;
}

.trust-text {
    flex: 1.5;
    /* Ocupa un poco más de espacio que la imagen */
}

.trust-text h2 {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.trust-text h2 span {
    font-size: 2.3rem;
}

.trust-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-logo img {
    max-width: 220px;
    /* Evita que el logo se vea gigante */
    width: 100%;
    height: auto;
}


/* ========================================================
   SECCIÓN: BLOG
   ======================================================== */
.blog-snippet-section {
    background-color: #ffffff;
    /* Fondo blanco para limpiar la vista tras el carrusel gris */
    padding: 6rem 2rem;
    width: 100%;
}

.blog-snippet-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- CABECERA --- */
.blog-snippet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Alinea los elementos por debajo */
    margin-bottom: 3rem;
    gap: 2rem;
}

.blog-title-area {
    max-width: 700px;
}

.blog-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.blog-title-area h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text-dark);
    text-wrap: balance;
}

.blog-view-all {
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    white-space: nowrap;
    /* Evita que el texto se parta en 2 líneas */
    padding-bottom: 0.5rem;
}

.blog-view-all:hover {
    transform: translateX(5px);
}

/* --- GRID DE CARDS --- */
.blog-cards-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 2rem;
}

/* --- CARDS --- */
.blog-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
    /* Efecto de zoom sutil al pasar el mouse */
}

.blog-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Filtro Familias: Oscuro tipo azul noche */
.blog-overlay-familias {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.95) 100%);
}

/* Filtro Profesionales: Azul corporativo ADICIO */
.blog-overlay-profesionales {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    opacity: 0.3;
}

.blog-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.blog-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    /* Pastilla semi-transparente */
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.blog-card-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.blog-card-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    /* Blanco apenas transparente */
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* --- BOTONES --- */
.btn-blog-profesionales {
    display: inline-flex;
    justify-content: center;
    /* <--- Fuerza el texto al centro horizontal */
    align-items: center;
    /* <--- Fuerza el texto al centro vertical */
    text-align: center;
    background-color: #ffffff;
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-blog-profesionales:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-blog-familias {
    display: inline-flex;
    justify-content: center;
    /* <--- Fuerza el texto al centro horizontal */
    align-items: center;
    /* <--- Fuerza el texto al centro vertical */
    text-align: center;
    background: var(--color-gradient);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-blog-familias:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

/* ========================================================
   SECCIÓN: CONTACTO
   ======================================================== */
.contacto-zonas-section {
    background-color: #f8f9fa;
    /* Fondo general de la página */
    padding: 6rem 2rem;
    width: 100%;
}

.contacto-zonas-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* --- COLUMNA IZQUIERDA: CONTACTO --- */
.contacto-info {
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
}

.contacto-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    /* Azul oscuro de ADICIO */
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.contacto-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

.contacto-lista {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contacto-icon-wrapper {
    width: 45px;
    height: 45px;
    background-color: #e2e8f0;
    /* Circulito gris/celeste suave */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contacto-text {
    display: flex;
    flex-direction: column;
}

.contacto-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.contacto-valor {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.4;
}

/* Redes Sociales */
.redes-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.redes-iconos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.red-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: var(--color-text-dark);
    border-radius: 12px;
    /* Forma de app/squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.red-icon:hover {
    background: var(--color-gradient);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 63, 135, 0.2);
}

/* --- COLUMNA DERECHA: ZONAS DE COBERTURA --- */
.zonas-card {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    /* Efecto tarjeta gris sutil */
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.zonas-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    /* Color casi negro para el título derecho */
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.zonas-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.zonas-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.zona-item {
    background-color: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zona-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.zona-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    /* Cuadrados azules */
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.zona-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.zona-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Footer (Información adicional) */
.zonas-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: auto;
}

.zonas-footer i {
    font-size: 1.2rem;
}

/* ========================================================
   SECCIÓN: FAQ
   ======================================================== */
.faq-snippet-section {
    background-color: #ffffff;
    /* Fondo blanco */
    padding: 6rem 2rem;
    width: 100%;
}

.faq-snippet-container {
    max-width: 800px;
    /* Contenedor angosto para que el texto sea fácil de leer */
    margin: 0 auto;
}

/* --- ENCABEZADO --- */
.faq-snippet-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    /* Azul corporativo */
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.faq-snippet-header h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.faq-snippet-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- ACORDEÓN --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.faq-item {
    background-color: #f8f9fa;
    /* Fondo gris súper claro */
    border-radius: 1rem;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item[open] {
    background-color: #f1f5f9;
    /* Se oscurece un poquito al abrirse */
}

/* El summary es la franja a la que le haces clic */
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    /* Quita el triangulito feo que viene por defecto en HTML */
}

/* Quita el triangulito en navegadores viejos de Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.faq-icon {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    /* Transición suave de la flechita */
}

/* Gira la flecha cuando el acordeón está abierto */
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

/* El texto de la respuesta */
.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    /* El padding top es 0 porque ya tiene espacio del summary */
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* --- BOTÓN VER TODAS --- */
.faq-snippet-action {
    text-align: center;
}

.btn-outline-primary {
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px;
    transition: all 1s ease;
    text-decoration: none;
    color: var(--color-primary);
    border: 2px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), var(--color-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-image: var(--color-gradient), var(--color-gradient);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 63, 135, 0.2);
}

.btn-outline-primary:hover,
.btn-outline-primary.gradient:hover,
.btn-outline-primary:hover .gradient {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

/* ========================================================
   FOOTER 
   ======================================================== */
.footer-section {
    background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-green) 100%);
    /* Azul oscuro corporativo */
    color: #ffffff;
    /* Gris muy clarito para el texto, no blanco puro para que no canse la vista */
    padding: 5rem 2rem 0 2rem;
    width: 100%;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Proporciones de las columnas */
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Línea separadora tenue */
}

/* --- COLUMNA 1: MARCA --- */
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo i {
    color: #ffffff;
    /* Toque celeste en el ícono */
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--color-primary-fixed-dim, #acc7ff);
    color: var(--color-on-secondary-fixed, #001b3f);
    transform: translateY(-3px);
}

/* --- COLUMNAS 2 y 3: ENLACES --- */
.footer-links-col h4,
.footer-contact-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    color: #ffffff;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
    padding-left: 5px;
    /* Pequeño efecto de movimiento al pasar el mouse */
}

/* --- COLUMNA 4: CONTACTO --- */
.footer-contact-col ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.footer-contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
}

.footer-contact-col i {
    color: #ffffff;
    margin-top: 0.2rem;
}

.btn-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-contact:hover {
    background-color: #25D366;
    /* Verde WhatsApp */
    border-color: #25D366;
}

/* --- BARRA INFERIOR --- */
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    font-weight: 900;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.5);
}


/* ========================================================
   BTN WHATSAPP
   ======================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    /* Separación desde abajo */
    right: 2.5rem;
    /* Separación desde la derecha */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Verde oficial de WhatsApp */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* Tamaño del icono */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    /* Z-index altísimo para que siempre flote sobre el resto del contenido */
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    /* Aplica la animación de latido */
}

/* Efecto al pasar el mouse por encima (Desktop) */
.whatsapp-float:hover {
    background-color: #1ebe5d;
    /* Un verde apenas más oscuro */
    transform: scale(1.1);
}

/* --- ANIMACIÓN DE LATIDO (Pulse) --- */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        /* La sombra se expande y se hace transparente */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================================
   TOP BAR (Barra Superior)
   ======================================================== */
.topbar {
    background: var(--color-gradient); /* Usa tu variable de azul ADICIO */
    color: #ffffff;
    padding: 0.5rem 0; /* Altura de la barrita */
    font-size: 0.85rem;
    font-weight: 600;
}

.topbar-container {
    max-width: 1200px; /* Mismo ancho máximo que tu navbar/plan-container */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between; /* Empuja el tel a la izq y redes a la der */
    align-items: center;
}

/* Enlaces generales de la topbar */
.topbar-link {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.topbar-link:hover {
    opacity: 0.8;
}

/* Contenedor de las redes */
.topbar-right {
    display: flex;
    gap: 0.8rem; /* Espacio entre los circulitos */
}

/* Estilo de los "circulitos" de redes (como en tu foto) */
.topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #ffffff; /* Círculo blanco */
    color: var(--color-primary); /* Icono azul */
    border-radius: 50%; /* Lo hace redondo */
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.topbar-social:hover {
    transform: translateY(-2px); /* Pequeño saltito al pasar el mouse */
    background-color: #f1f5f9; /* Se oscurece apenitas el blanco */
}






/* ========================================================
   HERO SERVICIOS (Página de Servicios)
   ======================================================== */
.hero-servicios-section {
    position: relative;
    width: 100%;
    padding: 10rem 2rem 6rem 2rem;
    /* Mucho padding top para evitar que el navbar fijo lo tape */
    background-color: #ffffff;
    overflow: hidden;
    /* Evita que el fondo inclinado rompa el ancho de la página */
}

/* Franja gris inclinada de fondo */
.hero-servicios-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background-color: #e2e8f0;
    transform: skewX(-15deg);
    opacity: 0.3;
    z-index: 0;
}

.hero-servicios-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

/* --- CONTENIDO (Izquierda) --- */
.hero-servicios-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-soluciones {
    background: var(--color-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-servicios-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--color-primary);
}

.hero-servicios-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Usamos la clase .btn-primary que creamos para el carrusel, 
   solo nos aseguramos que el ícono esté alineado */
.hero-servicios-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--color-gradient);
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-servicios-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 63, 135, 0.2);
    background-color: var(--color-primary-hover);
}

/* --- IMAGEN Y TARJETA FLOTANTE (Derecha) --- */
.hero-servicios-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.servicios-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4/5;
    /* Mantiene la proporción rectangular alta */
    object-fit: cover;
    border-radius: 2.5rem;
    /* Bordes bien redondeados como en la imagen */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.servicios-main-img:hover {
    transform: rotate(-0deg);
}

/* La tarjeta blanca flotante */
.floating-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    /* Sobresale hacia la izquierda de la imagen */
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    z-index: 20;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--color-gradient);
    color: #ffffff;
    border-radius: 50%;
    /* Un cuadradito redondeado */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ========================================================
   SECCIÓN: PLANES INDIVIDUALES
   ======================================================== */
.planes-individuales-section {
    background-color: #ffffff;
    /* Fondo blanco puro para resaltar las tarjetas */
    padding: 6rem 2rem;
    width: 100%;
}

/* Estilo del precio (Ej: X /mes) */
.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    /* Alinea la X grande con el /mes pequeño en la base */
    gap: 0.2rem;
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* --- TARJETA AZUL (Plan Intermedio) --- */
.plan-blue {
    background-color: var(--color-primary);
    border: none;
}

/* Forzamos a que todos los textos dentro de la tarjeta azul sean blancos */
.plan-blue .plan-title,
.plan-blue .plan-desc,
.plan-blue .plan-price,
.plan-blue .plan-price span,
.plan-blue .plan-features li,
.plan-blue .feature-icon {
    color: #ffffff;
}

/* Etiqueta "Más Popular" en la esquina */
.plan-badge-corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffffff;
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Botón Blanco para la tarjeta azul */
.btn-plan-white {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 1rem;
    border: 2px solid #ffffff;
    color: var(--color-primary);
    background-color: #ffffff;
    border-radius: 9999px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-plan-white:hover {
    background-color: transparent;
    color: #ffffff;
}

.plan-white {
    box-shadow: 5px 5px 5px 5px #eaeaea;
}


.planes-ahorro {
    text-align: center;
    margin: 4rem auto 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================================
   SECCIÓN: PLANES DÚO 
   ======================================================== */
.planes-duo-section {
    background-color: #f8f9fa;
    /* Fondo gris claro para separar de la sección anterior */
    padding: 0rem 2rem 4rem 2rem;
    width: 100%;
}

.planes-duo-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ENCABEZADO --- */
.planes-duo-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

.planes-duo-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.planes-duo-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.6;
}

.link-beneficios {
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    /* Alinea visualmente mejor con el texto de la izquierda */
}

.link-beneficios:hover {
    transform: translateX(5px);
}

/* --- GRID DE TARJETAS --- */
.planes-duo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- TARJETAS DÚO --- */
.duo-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.duo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 63, 135, 0.08);
}

/* Cabecera interna de la tarjeta */
.duo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.duo-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

/* Pastilla de descuento */
.duo-badge {
    background-color: #e0e7ff;
    /* Celeste súper suave */
    color: var(--color-primary);
    /* Azul fuerte */
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
}

.duo-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    /* Empuja el precio y el botón hacia el fondo de la tarjeta */
}

/* Precio */
.duo-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    line-height: 1;
}

.duo-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Botón de texto */
.duo-action {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    transition: gap 0.3s ease;
    /* Transición para el hover */
}

.duo-action:hover {
    gap: 0.8rem;
    /* La flechita se separa un poco al pasar el mouse */
}

/* ========================================================
   KIT BIENESTAR SERVICIO
   ======================================================== */
.srv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Colores de Fondo Comunes */
.bg-white {
    background-color: #ffffff;
}

.bg-light-gray {
    background-color: #f1f5f9;
}

.bg-gradient {
    background: var(--color-gradient);
}

/* Etiquetas (Tags) Superiores */
.tag-light-blue {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.tag-primary {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* --- 1. SECCIÓN KIT BIENESTAR (Azul Oscuro) --- */
.srv-kit-section {
    background: var(--color-gradient);
    padding: 6rem 0;
    color: #ffffff;
}

.srv-kit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.srv-kit-text h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.srv-kit-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Grilla de 6 cajitas */
.kit-devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.kit-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    transition: background-color 0.3s ease;
}

.kit-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.kit-box i {
    font-size: 2rem;
    color: #ffffff;
}

.kit-box span {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.kit-box-highlight {
    background-color: rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.kit-box-highlight span {
    font-weight: 900;
    font-size: 0.8rem;
}

/* ========================================================
   24HS / JURIDICO / ADAPTACION SERVICIO
   ======================================================== */
.srv-feature-section {
    padding: 6rem 0;
}

.srv-feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.srv-reverse {
    flex-direction: row-reverse;
    /* Pone la imagen a la izquierda */
}

.srv-feature-text {
    flex: 1;
}

.srv-feature-image {
    flex: 1;
}

.srv-feature-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.srv-feature-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Lista de tildes (Cuidadora) */
.srv-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.srv-check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.srv-check-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Tarjetas apiladas (Jurídico) */
.srv-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.srv-list-card {
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.srv-list-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.srv-list-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.3rem;
}

.srv-list-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Lista con Iconos (Adaptación) */
.srv-icon-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.srv-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.icon-box-light {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #f1f5f9;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.srv-icon-item h4 {
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.srv-icon-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Estilos de Imágenes */
.img-rounded {
    width: 100%;
    border-radius: 1.5rem;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Formas asimétricas para las fotos de cuidadoras */
.img-rounded-blob {
    width: 100%;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.img-rounded-blob-reverse {
    width: 100%;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ========================================================
   AJUSTE DE BOTONES (Secciones de Servicios)
   ======================================================== */
.srv-feature-text .btn-primary {
    width: fit-content;
    /* Hace que el botón solo mida lo que miden sus palabras */
    margin-top: 1rem;
    /* Le damos un poquito de aire extra arriba por las dudas */
    color: #ffffff;
    background: var(--color-gradient);
}


/* ========================================================
   SECCIÓN: COMPARACION SERVICIOS
   ======================================================== */
.tabla-planes-section {
    background-color: #f8f9fa;
    /* Fondo gris claro */
    padding: 6rem 2rem;
    width: 100%;
}

.tabla-planes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tabla-planes-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.tabla-planes-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* --- CONTENEDOR DE LA TABLA --- */
.tabla-container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    /* Permite scroll horizontal en celulares */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- ESTILOS DE LA TABLA --- */
.tabla-servicios {
    width: 100%;
    min-width: 800px;
    /* Ancho mínimo para que no se apriete en móvil */
    border-collapse: collapse;
    text-align: left;
}

/* Cabecera (Títulos) */
.tabla-servicios thead {
    background-color: #f1f5f9;
    /* Fondo un poco más gris para el header */
    border-bottom: 2px solid #e2e8f0;
}

.tabla-servicios th {
    padding: 1.5rem 2rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}


/* Celdas Generales */
.tabla-servicios td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Quitar la línea a la última fila */
.tabla-servicios tbody tr:last-child td {
    border-bottom: none;
}

/* Primera columna (Nombres de características) */
.col-caracteristica {
    font-weight: 800;
    color: var(--color-text-dark) !important;
    width: 30%;
}

/* Textos destacados dentro de la tabla */
.td-destacado {
    font-weight: 800;
    color: var(--color-text-dark) !important;
}

.td-bold {
    font-weight: 800;
}

/* Íconos */
.icon-cross {
    color: #e11d48;
    /* Rojo */
    font-size: 1.2rem;
}

.icon-check {
    color: var(--color-primary);
    /* Azul */
    font-size: 1.2rem;
}

/* ========================================================
   SECCIÓN: DUDAS
   ======================================================== */
.cta-dudas-section {
    background: #f8f9fa;
    padding: 8rem 2rem;
    width: 100%;
    text-align: center;
}

.cta-dudas-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-dudas-container h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.cta-dudas-container p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    text-wrap: balance;
}

/* --- Contenedor de Botones --- */
.cta-dudas-botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    /* Permite que los botones bajen si no hay espacio */
}

/* --- Botón Principal (Azul Sólido) --- */
.btn-primary-shadow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--color-gradient);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(0, 63, 135, 0.25);
    /* Sombra azulada */
    transition: all 0.3s ease;
}

.btn-primary-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 63, 135, 0.4);
    color: #ffffff;
}

/* --- Botón Secundario (Borde Azul) --- */

.btn-outline-shadow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2.5rem;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;

    /* 1. Color del texto */
    color: var(--color-primary);

    /* 2. Borde transparente para hacerle lugar al gradiente */
    border: 2px solid transparent;

    /* 3. El truco: Fondo blanco adrentro, Gradiente en el borde */
    /* Reemplaza #00c6ff por el cyan que estés usando si es necesario */
    background-image: linear-gradient(#f8f9fa, #f8f9fa), var(--color-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Efecto Hover: Rellenamos todo el botón con el gradiente y pasamos la letra a blanco */
.btn-outline-shadow:hover {
    color: #ffffff;
    /* Al poner el mismo gradiente en ambas capas, el botón se "pinta" entero */
    background-image: var(--color-gradient), var(--color-gradient);
    transform: translateY(-2px);
    /* Un pequeño saltito para darle vida */
    box-shadow: 0 8px 20px rgba(0, 63, 135, 0.2);
}

/* Cuando el botón tiene hover, forzamos a que el texto gradient se vuelva blanco sólido */
.btn-outline-shadow:hover,
.btn-outline-shadow.gradient:hover,
.btn-outline-shadow:hover .gradient {
    -webkit-text-fill-color: #ffffff;
}


/* ========================================================
   BLOG
   ======================================================== */
.blog-page-section {
    background-color: #fafafa;
    /* Fondo gris súper clarito para toda la página */
    padding: 8rem 2rem 6rem 2rem;
    width: 100%;
}

.blog-page-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- 1. CABECERA Y BUSCADOR --- */
.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 2rem;
}

.blog-subtitle-page {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.blog-header-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.blog-header-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.6;
}

.blog-search-box {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.blog-search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.blog-search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f1f5f9;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.blog-search-box input:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
}

/* --- 2. FILTROS --- */
.blog-filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-btn {
    background-color: #f1f5f9;
    color: var(--color-text-muted);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background-color: #e2e8f0;
    color: var(--color-text-dark);
}

.filter-btn.active {
    background: var(--color-gradient);
    /* Azul oscuro */
    color: #ffffff;
}

/* --- 3. BLOQUE DESTACADO (HERO GRID) --- */
.blog-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Columna izquierda más grande */
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Post Principal */
.hero-post-main {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.hero-post-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.hero-post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.tag-dark {
    background: var(--color-gradient);
    color: #ffffff;
}

.tag-light {
    background-color: #f1f5f9;
    color: var(--color-text-dark);
}

.post-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-info i {
    margin-right: 0.3rem;
}

.hero-post-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-post-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-link {
    font-weight: 800;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.post-link:hover {
    gap: 0.8rem;
}

/* Sidebar (Derecha) */
.hero-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-post-text {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex: 1;
}

.post-category {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.sidebar-post-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sidebar-post-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Promo (Smartwatch) */
.sidebar-post-promo {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 27, 63, 0.1) 0%, rgba(0, 27, 63, 0.9) 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #ffffff;
}

.promo-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* --- 4. GRILLA PRINCIPAL --- */
.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.article-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-tag {
    background: var(--color-gradient);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
    letter-spacing: 0.05em;
}

.article-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Empuja el botón hacia abajo */
}

/* Tarjeta Newsletter */
.newsletter-card {
    background: var(--color-gradient);
    /* Azul oscuro */
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    background-color: #ffffff;
    color: var(--color-primary);
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #f1f5f9;
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-bg-icon {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* --- 5. PAGINACIÓN --- */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-num,
.page-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--color-text-dark);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-arrow {
    border: 1px solid #e2e8f0;
}

.page-num:hover,
.page-arrow:hover:not([disabled]) {
    background-color: #e2e8f0;
}

.page-num.active {
    background: var(--color-gradient);
    color: #ffffff;
}

.page-arrow[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: var(--color-text-muted);
    font-weight: 700;
}

/* ========================================================
   PÁGINA: QUIÉNES SOMOS
   ======================================================== */
.quienes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* --- 1. HERO --- */
.quienes-hero-section {
    padding: 10rem 0 6rem 0;
    background-color: #fafafa;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quienes-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.quienes-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.quienes-hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.quienes-hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- 2. HISTORIA Y ESTADÍSTICAS --- */
.quienes-historia-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.historia-texto h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.historia-texto p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Cuadrícula de 4 estadísticas */
.historia-estadisticas {
    display: flex;
    justify-content: center;
    /* Centra las 4 cajitas en el medio de la pantalla */
    align-items: center;
    gap: 5rem;
    /* Separación horizontal entre cada estadística en PC */
    margin-top: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    /* Por si la pantalla se achica, permite que bajen de línea */
}

/* Diseño de cada cajita con la línea azul */
.stat-box {
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-primary);
    /* La línea azul a la izquierda */
    padding-left: 1.2rem;
    /* Espacio entre la línea y el texto */
    width: fit-content;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
    /* Gris oscuro para que lea bien */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- 3. PILARES --- */
.quienes-pilares-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.quienes-pilares-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.pilares-sub {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pilares-grd-2 {
    margin-top: 2rem;
}

.pilar-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pilar-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    /* Celeste suave */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.pilar-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.pilar-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- 4. MISIÓN Y VISIÓN --- */
.quienes-mision-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.mision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mision-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mision-texto {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mision-bloque h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.mision-bloque p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- 5. COMPROMISO (Fondo Oscuro) --- */
.quienes-compromiso-section {
    background: var(--color-gradient);
    padding: 8rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.compromiso-tag {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    /* Texto gigante difuminado de fondo estilo marca de agua */
    letter-spacing: 0.2em;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
}

.quienes-compromiso-section h2 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    text-wrap: balance;
}

/* --- 6. CTA FINAL (Tarjeta Azul) --- */
.quienes-cta-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.cta-box-blue {
    background: var(--color-gradient);
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 90, 182, 0.2);
}

.cta-box-blue h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-box-blue p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-botones-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-white-solid {
    background-color: #ffffff;
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.btn-white-solid:hover {
    transform: translateY(-3px);
}


.btn-white-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.9rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ========================================================
   PÁGINA: PREGUNTAS FRECUENTES (FAQ)
   ======================================================== */
.faq-page-section {
    background-color: #f8fafc;
    /* Fondo gris extra claro (casi blanco) para toda la página */
    padding: 8rem 2rem 6rem 2rem;
    width: 100%;
    min-height: 100vh;
}

.faq-page-container {
    max-width: 900px;
    /* Contenedor angosto para lectura cómoda */
    margin: 0 auto;
}

/* --- Cabecera de la página --- */
.faq-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.faq-page-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Contenedor de Categorías --- */
.faq-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* --- Título de cada categoría --- */
.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cat-icon {
    width: 45px;
    height: 45px;
    background: var(--color-gradient);
    /* Fondo azul */
    color: #ffffff;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.faq-category-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

/* --- Lista de Acordeones --- */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card[open] {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

/* Elemento cliqueable (Summary) */
.faq-card summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    /* Quita el triangulito por defecto */
}

.faq-card summary::-webkit-details-marker {
    display: none;
    /* Para Safari */
}

.faq-q-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    padding-right: 1.5rem;
}

.faq-arrow {
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

/* Rotación de flecha al abrir */
.faq-card[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Texto de la respuesta */
.faq-a-text {
    padding: 0 2rem 1.5rem 2rem;
    /* El padding superior es 0 porque ya hay espacio en el summary */
}

.faq-a-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- CTA Box (Caja Azul del Final) --- */
.faq-cta-box {
    background: var(--color-gradient);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 90, 182, 0.2);
}

.faq-cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Botón sólido oscuro */
.btn-primary-dark {
    display: inline-flex;
    background-color: #ffffff;
    color: var(--color-primary-hover);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-dark:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================================
     PÁGINA  APP
   ======================================================== */
.app-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- 1. HERO APP --- */
.app-hero-section {
    background-color: #f8fafc;
    /* Gris súper clarito casi blanco */
    padding: 10rem 0 6rem 0;
    /* Espacio para el navbar */
    overflow: hidden;
}

.app-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-lanzamiento-tag {
    background-color: #e2e8f0;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.app-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.app-hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.app-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-image: var(--color-gradient);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 68, 142, 0.3);
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 68, 142, 0.3);
}

.app-version-info {
    background-color: #f1f5f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
}

.version-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.version-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Imagen Celular con Badge */
.app-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 320px;
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.conexion-badge {
    position: absolute;
    top: 10%;
    left: -2rem;
    /* Sobresale a la izquierda */
    background-color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    z-index: 2;
}

.dot-green {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* --- 2. CARACTERÍSTICAS (Features) --- */
.app-features-page-section {
    background-color: #ffffff;
    padding: 8rem 0;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.security-img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-features-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.app-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.app-feat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.app-feat-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.app-feat-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- 3. GUÍA DE INSTALACIÓN --- */
.app-guide-section {
    background-color: #f8fafc;
    padding: 8rem 0;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.guide-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.guide-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--color-gradient);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    /* Evita que el número gigante se salga de la tarjeta */
}

/* El número gigante de fondo */
.step-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    /* Gris ultra claro */
    z-index: 1;
    line-height: 1;
    user-select: none;
}

.step-content {
    position: relative;
    z-index: 2;
    /* Para que el texto quede por encima del número */
}

.step-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Banner Soporte */
.support-banner {
    background-color: #f1f5f9;
    border-radius: 1rem;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.support-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.3rem;
}

.support-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.btn-support {
    background: var(--color-gradient);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}


/* ========================================================
   PÁGINA: LEGALES 
   ======================================================== */
.legal-page-section {
    background-color: #f8fafc;
    /* Fondo gris súper clarito para descansar la vista */
    width: 100%;
    padding-bottom: 6rem;
}

.legal-container {
    max-width: 900px;
    /* Ancho optimizado para textos largos */
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Hero (Cabecera) --- */
.legal-hero {
    padding: 10rem 0 4rem 0;
    /* Espacio para el navbar fijo */
    text-align: center;
}

.legal-tag {
    background-color: #e2e8f0;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.legal-hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.legal-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    /* Gris sutil */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Documento Blanco --- */
.legal-document {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Bloques de texto --- */
.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    /* Títulos en azul corporativo */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-block p {
    font-size: 1rem;
    color: #334155;
    /* Gris oscuro para lectura */
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-block li {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-block strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

/* --- Caja de Alerta (Reemplazo de .note) --- */
.legal-alert-box {
    background-color: #fffbeb;
    /* Amarillito muy suave de advertencia */
    border-left: 4px solid #fbbf24;
    /* Borde amarillo más fuerte */
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.legal-alert-box i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.legal-alert-box div {
    font-size: 0.95rem;
    color: #92400e;
    /* Texto marrón/naranja oscuro para leer bien sobre amarillo */
    line-height: 1.6;
}

/* --- Lista de Contacto Final --- */
.legal-contact-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 1.5rem;
}

.legal-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #f1f5f9;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    margin-bottom: 0.8rem !important;
}

.legal-contact-list i {
    color: var(--color-primary);
    font-size: 1.1rem;
}


/* ========================================================
   PÁGINA DE ERROR / MANTENIMIENTO DEL BLOG
   ======================================================== */

/* Contenedor principal que ocupa toda la pantalla */
.error-page-main {
    min-height: 100vh;
    /* 100% del alto de la ventana */
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    background-color: var(--color-primary, #005ab6);
    /* Fondo azul corporativo */
    padding: 2rem;
}

/* Columna interna donde están los elementos */
.blog-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centra los elementos internos en una columna */
    text-align: center;
    max-width: 600px;
    color: #ffffff;
    /* Texto blanco para contrastar con el azul */
}

/* Logo */
.eblog-img {
    max-width: 250px;
    margin-bottom: 2rem;
}

/* Título */
.eblog-tittle {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Párrafo */
.eblog-text {
    font-size: 1.2rem;
    margin: 0 0 2.5rem 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Botón del Newsletter (Llamado a la acción principal) */
.eblog-newsletter {
    display: inline-block;
    background-color: #ffffff;
    color: var(--color-primary, #005ab6);
    padding: 1.2rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eblog-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enlace "Volver al inicio" (Empujado hacia abajo) */
.eblog-back {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 3.5rem;
    /* Este margen grande lo empuja bien abajo del resto */
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eblog-back:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Adaptación para celulares */
@media (max-width: 768px) {
    .eblog-tittle {
        font-size: 2.5rem;
    }

    .eblog-newsletter {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========================================================
   PÁGINA DE ERROR / MANTENIMIENTO DEL BLOG
   ======================================================== */

/* ========================================================
   PLAN ESTAR
   ======================================================== */
.plan-detail-main {
    background-color: #f8fafc;
    /* Fondo general gris súper clarito */
    width: 100%;
}

.plan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Etiquetas Reutilizables */
.tag-light-gray {
    background: var(--color-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tag-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* --- 1. HERO DEL PLAN --- */
.plan-hero-section {
    padding: 10rem 0 6rem 0;
}

.plan-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.plan-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.plan-hero-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Imagen y Badge Flotante */
.plan-hero-image-wrapper {
    position: relative;
}

.plan-main-img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    /* Sobresale hacia la izquierda */
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}



.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--color-text-dark);
}

.badge-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- 2. KIT BIENESTAR (Fondo Azul) --- */
.plan-kit-section {
    background: var(--color-gradient);
    /* Azul oscuro corporativo */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Efecto curvo sutil en el fondo (Opcional, inspirado en tu diseño) */
.plan-kit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.plan-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.plan-section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.plan-section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-white h2,
.text-white p {
    color: #ffffff;
}

.text-white p {
    opacity: 0.9;
}

.plan-kit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* --- Tarjetas Blancas del Kit Bienestar --- */
.plan-kit-card {
    background-color: #ffffff;
    /* Tarjeta completamente blanca */
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Sombrita para que resalte sobre el azul */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-kit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.plan-kit-card i {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--color-gradient);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plan-kit-card h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    /* Títulos en azul para mantener el estilo */
}

.plan-kit-card p {
    font-size: 0.85rem;
    color: #334155;
    /* Letras grises oscuras (no negras) para leer mejor */
    line-height: 1.5;
}

/* --- 3. ¿QUÉ INCLUYE? (Tarjetas Blancas) --- */
.plan-includes-section {
    padding: 8rem 0;
}

.plan-section-header-incluido h2 {
    color: var(--color-text-dark);
}

.plan-section-header-incluido p {
    color: var(--color-text-muted);
}

.plan-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.include-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.include-icon {
    width: 50px;
    height: 50px;
    background-color: #f1f5f9;
    color: var(--color-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.include-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.include-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- 4. OPCIÓN DÚO --- */
.plan-duo-banner-section {
    padding: 0 0 6rem 0;
}

.duo-wrapper-box {
    display: flex;
    border-radius: 2rem;
    overflow: hidden;
    /* Esto es clave para que la imagen y el bloque no se salgan de las esquinas redondas */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.duo-image-side {
    flex: 1;
}

.duo-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duo-content-side {
    flex: 1;
    background: var(--color-gradient);
    /* Azul un tono distinto para diferenciar */
    color: #ffffff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.duo-content-side h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.duo-content-side-p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.duo-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.duo-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.duo-benefits-list i {
    color: #ffffff;
    font-size: 1.2rem;
}

/* --- Ajuste del Botón en la sección Dúo --- */
.duo-content-side .btn-white-solid {
    width: max-content;
    /* Se adapta al largo de la palabra */
    align-self: flex-start;
    /* Lo alinea a la izquierda debajo de la lista */
    margin-top: 1rem;
}



/* --- 5. CTA FINAL --- */
.plan-final-cta {
    padding: 4rem 0 8rem 0;
}

.plan-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.plan-final-cta p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* ========================================================
   PÁGINA: ESTAR PLUS
   ======================================================== */

/* Fondo decorativo detrás de la imagen del Hero */
.hero-image-bg-shape {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    border-radius: 2rem;
    z-index: -1;
}

/* --- 2. Kit Bienestar Intermedio (Fondo Claro) --- */
.intermedio-kit-section {
    padding: 6rem 0;
    background-color: #ffffff;
    /* Este bloque es blanco en tu diseño */
}

.kit-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.kit-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
}

.intermedio-kit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Fuerza 5 columnas idénticas */
    gap: 1.5rem;
}

.inter-kit-card {
    background-color: #f8fafc;
    border-radius: 1.2rem;
    padding: 2rem 1rem;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.inter-kit-card:hover {
    transform: translateY(-5px);
}

.inter-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto;
}

.inter-kit-card h4 {
    display: flex;
    margin: 0 auto;
}

.inter-kit-card span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
}

.inter-kit-card p {
    font-size: 0.85rem;
    color: #475569;
    /* Un gris intermedio para que no compita con el título */
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* --- 3. Bento Grid (Cuidado Avanzado) --- */
.intermedio-bento-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.bento-header {
    margin-bottom: 3rem;
}

.bento-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.bento-header p {
    color: var(--color-text-muted);
}

.inter-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Tamaños en el Grid */
.bento-large {
    grid-column: 1 / 3;
}

.bento-tall {
    grid-column: 3 / 4;
}

/* Elementos internos */
.bento-top-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Empuja el contenido hacia abajo */
}

/* Imagen dentro de la tarjeta grande */
.bento-inner-img {
    width: 100%;
    border-radius: 1rem;
    height: 200px;
    object-fit: cover;
    margin-top: 1rem;
}

/* Enlace inferior */
.bento-link {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tarjeta Azul */
.bento-blue {
    background-image: var(--color-gradient);
    color: #ffffff;
}

.bento-blue h3 {
    color: #ffffff;
}

.bento-blue p {
    color: rgba(255, 255, 255, 0.9);
}

.bento-blue i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* --- 4. Dúo Intermedio (Gris Claro) --- */
.intermedio-duo-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.inter-duo-wrapper {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    padding: 4rem;
    gap: 4rem;
}

.inter-duo-content {
    flex: 1;
}

.inter-duo-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.inter-duo-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.inter-duo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inter-duo-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
}



/* Botón Negro/Oscuro */
.btn-dark-solid {
    background: var(--color-gradient);
    /* Gris casi negro */
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    transition: background-color 0.3s;
    display: inline-block;
    width: max-content;
}

.btn-dark-solid:hover {
    background-color: var(--color-primary-hover);
}

.inter-duo-image {
    flex: 1;
    position: relative;
}

.grayscale-img {
    width: 100%;
    border-radius: 1.5rem;
    /* filter: grayscale(100%);  Efecto blanco y negro del diseño */
}

.inter-duo-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    font-weight: 900;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ========================================================
       PLAN ESTAR PRO
   ======================================================== */

/* Clase utilitaria para botones que se ajustan a su palabra */
.btn-auto {
    width: max-content;
}

/* Tipografía itálica y fina para "Cuidado Integral 360" */
.text-italic-light {
    font-weight: 600;
}

/* Fondo decorativo del Hero Premium */
.hero-image-bg-shape-premium {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 90%;
    height: 110%;
    background-color: #e2e8f0;
    border-radius: 2rem;
    z-index: -1;
}

/* Badge flotante más grande */
.badge-premium {
    bottom: -2rem;
    left: -3rem;
    align-items: flex-start;
}

.badge-premium span {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 0.3rem;
}

/* --- 2. Propuesta de Valor (Bento Grid Premium) --- */
.premium-value-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.premium-section-title {
    margin-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
    display: inline-block;
}

.premium-section-title h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text-dark);
}

.premium-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Clases específicas para acomodar el grid */
.bento-col-2 {
    grid-column: 1 / 3;
}

/* Tarjeta horizontal (Servicios Concierge) */
.bento-horizontal {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    overflow: hidden;
}

.bento-horiz-text {
    padding: 2.5rem;
    flex: 1;
}

.bento-card-img {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 0px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bento-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

/* --- 3. Kit Bienestar Premium --- */
.premium-kit-section {
    padding: 6rem 0;
    background-color: #f1f5f9;
    /* Gris apenas más oscuro para contrastar */
}

.premium-kit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Ajustes a la tarjeta base para que entre más texto */
.premium-kit-grid .inter-kit-card {
    background-color: #ffffff;
    align-items: flex-start;
    text-align: left;
}

.premium-kit-grid .inter-kit-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 400;
}

/* Banner Inferior del Kit */
.premium-kit-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    margin-top: 3rem;
    text-align: left;
    gap: 2rem;
}

.kit-banner-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.kit-banner-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

.kit-banner-badge {
    background-color: #f1f5f9;
    color: var(--color-text-dark);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.kit-banner-badge i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* --- 4. Dúo Premium --- */
.premium-duo-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.premium-duo-bg {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* ========================================================
       texto DEGRADE
   ======================================================== */

.gradient {
    /* 1. Define el degradado como fondo */
    background: var(--color-gradient);

    /* 2. Recorta el fondo para que solo se vea en el texto */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Hace que el texto sea transparente */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.white {
    color: #ffffff !important;
}

.btn-gradient {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    background-color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
}


/* ========================================================
   PÁGINA: KIT BIENESTAR (Estilo ADICIO Premium)
   ======================================================== */
.kit-page-main {
    background-color: #f8fafc;
    /* Gris ultra claro */
    width: 100%;
}

/* Tipografía itálica y fina para subtítulos del hero */
.text-italic-light {
    font-weight: 300;
    font-style: italic;
    color: var(--color-primary);
}

/* --- 1. Hero Section --- */
.kit-hero-section {
    padding: 5rem 0 6rem 0;
    background-color: #ffffff;
    /* Hero blanco nítido */
}

.kit-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kit-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.kit-hero-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Fondo decorativo del Hero Kit */
.kit-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

/* --- 2 & 3. Introducción y Grid de Productos --- */
.kit-intro-section {
    padding: 6rem 0 2rem 0;
}

.kit-intro-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.kit-intro-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kit-products-section {
    padding: 6rem 0;
}

.kit-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas como en la captura */
    gap: 2rem;
}

/* Diseño de la Tarjeta de Producto ADICIO */
.product-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    /* Esquinas súper redondeadas */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Sombra profunda y suave */
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contenedor del Icono con tu degradado */
.product-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--color-gradient);
    /* Usando tu degradado saturado */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- 4. ¿Cómo funciona? (Sección de pasos) --- */
.kit-process-section {
    padding: 8rem 0;
    background-color: #ffffff;
    /* Fondo blanco */
}

.kit-section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.kit-section-header p {
    color: var(--color-text-muted);
    margin-bottom: 5rem;
}

.kit-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.process-step-card {
    position: relative;
    background-color: #f8fafc;
    padding: 4rem 2rem 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

/* Número del paso flotante */
.process-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    border: 4px solid #ffffff;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.process-step-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.process-step-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- 5. CTA Final (Sección azul de la captura) --- */
.kit-final-cta-section {
    background-color: var(--color-primary);
    /* Azul oscuro corporativo */
    padding: 6rem 0;
}

.text-white h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.text-white p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================
   SECCIÓN DETALLE DE DISPOSITIVO (Ej: Smartwatch)
   ======================================================== */
.device-detail-section {
    padding: 6rem 0;
    background: var(--color-gradient);
}

.device-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    /* Buena separación entre imagen y texto */
    align-items: center;
}

/* Estilo de la Imagen */
.device-img {
    width: 100%;
    border-radius: 2rem;
    /* Bordes súper redondeados estilo ADICIO */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Sombra elegante */
    object-fit: cover;
}

/* Textos Principales */
.device-text-col h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.device-intro {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Lista de Características */
.device-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Separación vertical entre los ítems */
}

.device-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Iconos */
.df-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    /* Evita que el icono se aplaste */
    background-color: #ffffff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Icono especial para el SOS (Tono rojo sutil) */
.sos-icon {
    color: #e11d48;
}

/* Textos de las Características */
.df-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.df-text p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* ========================================================
   SECCIÓN: OXÍMETRO DE PULSO
   ======================================================== */
.oximetro-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    /* Fondo blanco para alternar con el gris del smartwatch */
}

.oximetro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Textos Principales del Oxímetro */
.oximetro-text-col h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.oximetro-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Tarjetas de Métricas (SpO2, PR bpm) */
.device-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card h4 {
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.stat-card span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 700;
}

/* Texto inferior pequeño */
.oximetro-footer-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Caja de exhibición del producto (Fondo blanco) */
.product-showcase-card {
    background-color: #f8fafc;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-img-transparent {
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
}

/* ========================================================
   SECCIÓN: TENSIÓMETRO DIGITAL
   ======================================================== */
.tensiometro-section {
    padding: 6rem 0;
    background-color: #ffffff;
    /* Fondo para contrastar con la sección anterior */
}

.tensiometro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* --- Columna de Imagen --- */
.tensiometro-image-col {
    display: flex;
    justify-content: center;
}

.tensiometro-img {
    width: 100%;
    max-width: 550px;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* --- Columna de Texto --- */
.tensiometro-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Caja del Subtítulo / Cita */
.tensiometro-quote-box {
    background: var(--color-gradient);
    /* Gris sutil azulado */
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    display: inline-block;
    /* Hace que la caja se adapte al ancho del texto */
}

.tensiometro-quote-text {
    color: #ffffff;
    /* Texto en tu azul principal */
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

/* Lista de Tildes */
.tensiometro-feature-list {
    list-style: none;
    /* Quitamos las viñetas por defecto */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tensiometro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tensiometro-icon {
    color: var(--color-primary);
    /* Tilde azul */
    font-size: 1.2rem;
    margin-top: 0.15rem;
    /* Ajuste milimétrico para que el icono se alinee con la primer línea de texto */
}

.tensiometro-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* ========================================================
   SECCIÓN: DISPOSITIVOS BÁSICOS (Termómetro y Balanza)
   ======================================================== */
.basic-devices-section {
    padding: 6rem 0;
    background: var(--color-gradient);
    /* Ajustalo a #f8fafc si la sección anterior es blanca */
}

.basic-devices-header {
    margin-bottom: 4rem;
}

.basic-devices-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.basic-devices-header p {
    color: #ffffff;
}

.basic-devices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* Espacio entre las dos tarjetas grandes */
}

/* --- Diseño de la Tarjeta Base --- */
.basic-device-card {
    border-radius: 1.5rem;
    overflow: hidden;
    /* Para que la imagen respete los bordes curvos arriba */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basic-device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* --- Contenedores de Imágenes --- */
.bd-image-wrapper {
    width: 100%;
    height: 280px;
    /* Altura fija para mantener simetría perfecta */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Si tu imagen ya tiene fondo, usamos cover. Si es PNG transparente, usamos contain */
.bd-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.bd-img-transparent {
    max-width: 65%;
    height: auto;
}

/* --- Contenido Interno de las Tarjetas --- */
.bd-content {
    padding: 2.5rem;
    flex-grow: 1;
    /* Empuja el contenido para rellenar espacios vacíos */
    display: flex;
    flex-direction: column;
}

.bd-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.bd-intro {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* --- Lista del Termómetro --- */
.bd-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bd-feature-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.bd-icon {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 0.15rem;
}


.bd-feature-list strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.bd-feature-list p {
    margin: 0;
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.5;
}

/* --- Píldoras de la Balanza --- */
.bd-pills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    /* Empuja la grilla hacia abajo si sobra espacio */
}

/* --- Ajuste de tamaño para las Píldoras de la Balanza --- */

.bd-pill {
    display: flex;
    align-items: center;
    gap: 1.2rem; /* Separamos un poco más el circulo del texto */
}

.bd-pill-icon {
    width: 48px;  /* Agrandamos el circulo bastante más (antes era 32px) */
    height: 48px;
    background-color: #ffffff; /* Fondo blanco de la burbuja */
    color: var(--color-primary); /* Icono azul */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Agrandamos el tamaño del icono de FontAwesome */
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Una sombrita suave para que resalte del fondo */
}

.bd-pill-text {
    font-size: 1.1rem; /* Agrandamos la letra (antes era 0.85rem) */
    font-weight: 500;
    color: #ffffff; /* Letra blanca para que contraste con tu fondo cyan */
}


.kit-titulo-inlu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 2rem 0;
    text-align: center;
}

.btn-kit-bienestar {
    padding: 2rem 0;
}

.btn-kit-basico {
    padding: 2rem 0;
    text-align: center;
    align-items: center;
}

.oximetro-text-col .btn-primary,
.tensiometro-text-col .btn-primary {
    width: fit-content;
    /* Hace que el botón solo mida lo que miden sus palabras */
    margin-top: 1rem;
    /* Le damos un poquito de aire extra arriba por las dudas */
    color: #ffffff;
    background: var(--color-gradient);
}