|/* =========================================================
   ASYLUM CONNECTED CARE
   Estilos generales
========================================================= */

:root {

    --asylum-navy: #073b63;
    --asylum-dark: #062f50;
    --asylum-blue: #0875a5;
    --asylum-blue-hover: #075f88;
    --asylum-cyan: #00a9d6;
	--asylum-teal: #20a9a1;

    --asylum-light: #f4f8fb;
    --asylum-white: #ffffff;

    --asylum-text: #102a43;
    --asylum-muted: #64748b;

    --asylum-border: #e4ebf1;

    --header-height: 82px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--asylum-text);
    background: var(--asylum-white);

    -webkit-font-smoothing: antialiased;
}


/* =========================================================
   HEADER
========================================================= */

.asylum-header {

    width: 100%;

    background: #ffffff;

    border-bottom:
        1px solid var(--asylum-border);

    box-shadow:
        0 2px 12px rgba(0, 45, 75, 0.05);

    position: relative;

    z-index: 1000;
}


.asylum-header .navbar {

    min-height: var(--header-height);

    padding-top: 0;
    padding-bottom: 0;
}


.asylum-navbar-container {

    min-height: var(--header-height);
}


/* =========================================================
   LOGOTIPO
========================================================= */

.asylum-brand {

    display: flex;

    align-items: center;

    margin-right: 40px;

    padding: 0;
}


.asylum-logo {

    display: block;

    width: auto;

    height: 76px;

    object-fit: contain;
}


/* =========================================================
   MENÚ PRINCIPAL
========================================================= */

.asylum-header .navbar-nav {

    gap: 4px;
}


.asylum-header .nav-link {

    position: relative;

    color: var(--asylum-navy);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    padding: 30px 15px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.asylum-header .nav-link:hover,
.asylum-header .nav-link:focus {

    color: var(--asylum-blue);
}


/* Línea inferior */

.asylum-header .nav-link::after {

    content: "";

    position: absolute;

    left: 15px;
    right: 15px;

    bottom: 19px;

    height: 2px;

    background: var(--asylum-blue);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.2s ease;
}


.asylum-header .nav-link:hover::after,
.asylum-header .nav-link.active::after {

    transform: scaleX(1);
}


.asylum-header .nav-link.active {

    color: var(--asylum-blue);
}


/* =========================================================
   DROPDOWN SOLUCIONES
========================================================= */

.asylum-header
.dropdown-toggle::after {

    position: static;

    display: inline-block;

    width: 0;
    height: 0;

    margin-left: 6px;

    vertical-align: 3px;

    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;

    transform: none;

    background: transparent;
}


.asylum-dropdown {

    width: 330px;

    padding: 10px;

    border: 1px solid var(--asylum-border);

    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(7, 59, 99, 0.13);
}


.asylum-dropdown .dropdown-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 14px;

    border-radius: 8px;

    color: var(--asylum-navy);

    white-space: normal;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.asylum-dropdown .dropdown-item:hover {

    background:
        #f1f8fc;

    color:
        var(--asylum-blue);
}


.asylum-dropdown .dropdown-item strong {

    display: block;

    font-size: 14px;

    font-weight: 700;
}


.asylum-dropdown .dropdown-item small {

    display: block;

    margin-top: 2px;

    color: var(--asylum-muted);

    font-size: 12px;
}


.dropdown-icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #eaf6fb;

    color:
        var(--asylum-blue);

    font-size: 18px;
}


.asylum-dropdown .dropdown-divider {

    margin:
        5px 10px;

    border-color:
        var(--asylum-border);
}


/* =========================================================
   BOTÓN SOLICITAR DEMOSTRACIÓN
========================================================= */

.asylum-demo-item {

    margin-left: 15px;
}


.asylum-demo-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding:
        11px 19px;

    background:
        linear-gradient(
            135deg,
            #0875a5,
            #075d86
        );

    border: none;

    border-radius: 7px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 4px 10px rgba(8, 117, 165, 0.15);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.asylum-demo-btn:hover,
.asylum-demo-btn:focus {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #075f88,
            #064b70
        );

    transform:
        translateY(-1px);

    box-shadow:
        0 6px 15px rgba(8, 117, 165, 0.22);
}


/* =========================================================
   BOTÓN HAMBURGUESA
========================================================= */

.asylum-toggler {

    border:
        1px solid var(--asylum-border);

    padding:
        7px 9px;

    box-shadow: none !important;
}


.asylum-toggler:focus {

    box-shadow:
        0 0 0 3px rgba(8, 117, 165, 0.12)
        !important;
}


/* =========================================================
   SECCIÓN TEMPORAL
========================================================= */

.test-section {

    min-height:
        calc(100vh - var(--header-height));

    display: flex;

    align-items: center;

    background:
        var(--asylum-light);
}


.test-section h1 {

    margin-bottom: 8px;

    color:
        var(--asylum-navy);

    font-size:
        clamp(34px, 4vw, 54px);

    font-weight: 700;
}


.test-section p {

    color:
        var(--asylum-muted);

    font-size: 17px;
}

/* =========================================================
   INICIO / HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: auto;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        65px 0 55px;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f8fbfd 48%,
            #eef7fa 100%
        );
}


.hero-row {

    position: relative;

    z-index: 2;
}


/* =========================================================
   CONTENIDO
========================================================= */

.hero-content {

    padding-right: 45px;
}


.hero-eyebrow {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--asylum-blue);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-title {

    max-width: 650px;

    margin:
        0 0 22px;

    color: var(--asylum-navy);

    font-size:
        clamp(42px, 4.2vw, 62px);

    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -1.5px;
}


.hero-title span {

    color: var(--asylum-blue);
}


.hero-description {

    max-width: 610px;

    margin-bottom: 30px;

    color: #526879;

    font-size: 18px;

    line-height: 1.7;
	
	text-align: justify;
	text-justify: inter-word;
}


/* =========================================================
   BOTONES
========================================================= */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 40px;
}


.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 12px 22px;

    border: 1px solid #0875a5 !important;
    border-radius: 7px;

    background-color: #0875a5 !important;
    color: #ffffff !important;

    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 7px 18px rgba(8, 117, 165, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.hero-primary-btn:hover,
.hero-primary-btn:focus,
.hero-primary-btn:active {
    background-color: #073b63 !important;
    border-color: #073b63 !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 22px rgba(7, 59, 99, 0.22);
}

.hero-primary-btn:hover {

    color: #ffffff;

    background:
        var(--asylum-navy);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 22px rgba(7, 59, 99, 0.22);
}


.hero-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding:
        12px 22px;

    border:
        1px solid #cad9e3;

    border-radius: 7px;

    background: #ffffff;

    color:
        var(--asylum-navy);

    font-weight: 700;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}


.hero-secondary-btn:hover {

    color:
        var(--asylum-blue);

    border-color:
        var(--asylum-blue);

    background:
        #f8fcfe;
}


/* =========================================================
   PILARES
========================================================= */

.hero-pillars {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    max-width: 660px;
}


.hero-pillar {

    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-pillar-icon {

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #e8f5f8;

    color:
        var(--asylum-blue);

    font-size: 17px;
}


.hero-pillar strong {

    display: block;

    margin-bottom: 2px;

    color:
        var(--asylum-navy);

    font-size: 13px;

    line-height: 1.2;
}


.hero-pillar span {

    display: block;

    color:
        #778996;

    font-size: 11px;

    line-height: 1.3;
}


/* =========================================================
   IMAGEN
========================================================= */

.hero-visual {

    position: relative;

    padding-left: 35px;
}


.hero-image-wrapper {

    position: relative;

    max-width: 570px;

    margin-left: auto;
}


.hero-image {

    display: block;

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius:
        28px 8px 28px 8px;

    box-shadow:
        0 25px 55px rgba(6, 47, 80, 0.16);
}


/* =========================================================
   TARJETA SOBRE IMAGEN
========================================================= */

.hero-floating-card {

    position: absolute;

    left: -42px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 285px;

    padding:
        15px 18px;

    border:
        1px solid rgba(255,255,255,0.8);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 12px 30px rgba(6,47,80,0.15);

    backdrop-filter:
        blur(10px);
}


.floating-card-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #e7f6f5;

    color:
        var(--asylum-teal);

    font-size: 20px;
}


.hero-floating-card strong {

    display: block;

    color:
        var(--asylum-navy);

    font-size: 14px;
}


.hero-floating-card span {

    display: block;

    margin-top: 2px;

    color:
        var(--asylum-muted);

    font-size: 12px;
}


/* =========================================================
   DECORACIÓN
========================================================= */

.hero-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.hero-decoration-one {

    width: 360px;
    height: 360px;

    right: -150px;
    top: -120px;

    background:
        rgba(0, 169, 214, 0.06);
}


.hero-decoration-two {

    width: 260px;
    height: 260px;

    left: -140px;
    bottom: -150px;

    background:
        rgba(19, 166, 161, 0.05);
}

/* =========================================================
   TEXTOS JUSTIFICADOS
========================================================= */

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* =========================================================
   SOLUCIONES
========================================================= */

.solutions-section {
    padding:90px 0;
    background: #ffffff;
}

.solutions-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--asylum-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-title {

    margin-bottom: 18px;
    color: var(--asylum-navy);
    font-size: 46px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.2px;

}

.section-title span,
.solution-content h3 span,
.family-portal h3 span {
    color: var(--asylum-blue);
}

.section-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #5b7080;
    font-size: 17px;
    line-height: 1.75;
}


/* BLOQUES */

.solution-block {
    position: relative;
    padding: 65px 55px;
    margin-bottom: 55px;
    border-radius: 24px;
}

.solution-block-primary {
    background: #f4f9fc;
}

.solution-block-secondary {
    background: #f8fafb;
}

.solution-block-secondary {
    background: #f8fafb;
    margin-bottom: 25px;
}

.solution-content {
    position: relative;
}

.solution-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 14px;
    background: #e4f3f8;
    color: var(--asylum-blue);
    font-size: 24px;
}

.solution-label {
    display: block;
    margin-bottom: 10px;
    color: var(--asylum-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.solution-content h3,
.family-portal h3 {
    max-width: 550px;
    margin-bottom: 20px;
    color: var(--asylum-navy);
    font-size: 35px;
    line-height: 1.18;
    font-weight: 750;
}

.solution-description {
    max-width: 570px;
    margin-bottom: 28px;
    color: #5b7080;
    font-size: 16px;
    line-height: 1.75;
}


/* CARACTERÍSTICAS */

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #40596b;
    font-size: 14px;
}

.solution-feature i {
    color: var(--asylum-teal);
    font-size: 17px;
}


/* VISUAL GENERAL */

.solution-visual {
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    box-shadow: 0 18px 45px rgba(7, 59, 99, 0.09);
}

.solution-visual-header,
.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e7edf1;
}

.solution-visual-header span,
.admin-top span {
    display: block;
    color: #7a8d9a;
    font-size: 12px;
}

.solution-visual-header strong {
    display: block;
    margin-top: 3px;
    color: var(--asylum-navy);
    font-size: 18px;
}

.solution-visual-header > i,
.admin-top > i {
    color: var(--asylum-teal);
    font-size: 26px;
}


/* OPERACIÓN */

.operation-cards {
    display: grid;
    gap: 12px;
}

.operation-card {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f8fbfc;
}

.operation-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e8f5f8;
    color: var(--asylum-blue);
    font-size: 18px;
}

.operation-card span {
    display: block;
    color: #7a8d9a;
    font-size: 11px;
}

.operation-card strong {
    display: block;
    margin-top: 2px;
    color: var(--asylum-navy);
    font-size: 13px;
}

.status-ok {
    color: #24a884;
}


/* ADMINISTRACIÓN */

.admin-chart {
    padding: 20px;
    border-radius: 14px;
    background: #f7fafc;
}

.admin-chart-info small {
    display: block;
    color: #82929d;
}

.admin-chart-info strong {
    display: block;
    margin-top: 3px;
    color: var(--asylum-navy);
}

/* INDICADORES ADMINISTRATIVOS */

.admin-indicators {
    display: grid;
    gap: 15px;
    margin-top: 22px;
}

.admin-indicator {
    width: 100%;
}

.admin-indicator-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.admin-indicator-info span {
    color: #526b7b;
    font-size: 12px;
    font-weight: 600;
}

.admin-indicator-info i {
    color: var(--asylum-blue);
    font-size: 14px;
}

.chart-bars span {
    flex: 1;
    min-height: 15px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(
        180deg,
        var(--asylum-teal),
        var(--asylum-blue)
    );
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.admin-stats div {
    padding: 12px 8px;
    text-align: center;
    border-radius: 10px;
    background: #f7fafc;
    color: var(--asylum-navy);
    font-size: 12px;
}

.admin-stats i {
    display: block;
    margin-bottom: 5px;
    color: var(--asylum-blue);
    font-size: 18px;
}


/* PLATAFORMA COMPLETA */

.platform-message {
    max-width: 850px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px auto 35px;
    padding: 24px 28px;
    border: 1px solid #d9e9ef;
    border-radius: 16px;
    background: #f6fbfc;
}

.platform-message-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--asylum-navy);
    color: #ffffff;
    font-size: 22px;
}

.platform-message strong {
    display: block;
    margin-bottom: 5px;
    color: var(--asylum-navy);
    font-size: 17px;
}

.platform-message p {
    margin: 0;
    color: #5c7180;
    font-size: 14px;
    line-height: 1.6;
}


/* PORTAL FAMILIAR */

.family-portal {
    padding: 65px 55px;
    border-radius: 24px;
    background:
        linear-gradient(
            120deg,
            #f5fbfa,
            #f5f9fc
        );
}

.portal-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #e6f5ef;
    color: #218367;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.portal-icon {
    background: #e5f5ef;
    color: #218b6b;
}

.portal-items {
    display: grid;
    gap: 9px;
}

.portal-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #425c6d;
    font-size: 14px;
}

.portal-items i {
    color: #239875;
    font-size: 17px;
}


/* PORTAL VISUAL */

.portal-visual {
    width: 100%;
    max-width: 760px; /* antes 620px */
    margin: 0 auto;
    padding: 0;
    min-height: 0;
    background: transparent;
    overflow: hidden;
}

.portal-device {
    padding: 25px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(7, 59, 99, 0.10);
}

.portal-device-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6edf1;
}

.portal-avatar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5f5ef;
    color: #218b6b;
    font-size: 20px;
}

.portal-device-header small {
    display: block;
    color: #8796a0;
}

.portal-device-header strong {
    display: block;
    color: var(--asylum-navy);
    font-size: 14px;
}

.portal-menu {
    display: grid;
    gap: 8px;
}

.portal-menu div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 9px;
    background: #f7fafb;
    color: #496171;
    font-size: 13px;
}

.portal-menu i {
    width: 22px;
    color: var(--asylum-blue);
    font-size: 16px;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.benefits-section {
    padding:90px 0;
    background: #ffffff;
}


/* ENCABEZADO */

.benefits-heading {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.benefits-heading .section-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   RETÍCULA DE BENEFICIOS
========================================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    position: relative;

    min-height: 215px;
    padding: 27px 26px;

    border: 1px solid #e5edf2;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(7, 59, 99, 0.055);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);

    border-color: #d5e5ec;

    box-shadow:
        0 16px 34px rgba(7, 59, 99, 0.09);
}


/* ICONOS */

.benefit-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 19px;

    border-radius: 13px;

    font-size: 21px;
}

.benefit-icon-blue {
    background: #e7f3fa;
    color: #0875a5;
}

.benefit-icon-green {
    background: #e8f6ef;
    color: #23845f;
}

.benefit-icon-purple {
    background: #f0ebfa;
    color: #7354a3;
}

.benefit-icon-orange {
    background: #fff1e5;
    color: #d97a2b;
}

.benefit-icon-red {
    background: #fcebed;
    color: #c85a68;
}

.benefit-icon-cyan {
    background: #e5f7f8;
    color: #188b91;
}


/* TEXTOS */

.benefit-card h3 {
    margin: 0 0 10px;

    color: var(--asylum-navy);

    font-size: 17px;
    line-height: 1.35;
    font-weight: 750;
}

.benefit-card p {
    margin: 0;

    color: #617483;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   ACOMPAÑAMIENTO CONTINUO
========================================================= */

.benefits-support {
    display: grid;
    grid-template-columns: 1.05fr 1.55fr;
    align-items: center;
    gap: 42px;

    margin-top: 38px;
    padding: 27px 32px;

    border: 1px solid #dbeaf0;
    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            #f3f9fc 0%,
            #f5fbfa 100%
        );
}

.benefits-support-heading {
    display: flex;
    align-items: center;
    gap: 17px;
}

.benefits-support-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dff1f6;
    color: var(--asylum-blue);

    font-size: 22px;
}

.benefits-support-heading h3 {
    margin: 0 0 5px;

    color: var(--asylum-navy);

    font-size: 18px;
    font-weight: 750;
}

.benefits-support-heading p {
    margin: 0;

    color: #667b89;

    font-size: 13px;
    line-height: 1.55;
}


/* ELEMENTOS DE ACOMPAÑAMIENTO */

.benefits-support-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
}

.benefits-support-items div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #435d6e;

    font-size: 13px;
    font-weight: 600;
}

.benefits-support-items i {
    color: var(--asylum-teal);
    font-size: 17px;
}


/* =========================================================
   MENSAJE FINAL
========================================================= */

.benefits-closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 28px;

    color: #637786;

    font-size: 14px;
}

.benefits-closing i {
    color: var(--asylum-teal);
    font-size: 20px;
}

.benefits-closing strong {
    font-weight: 600;
}

.benefits-closing span {
    color: var(--asylum-navy);
    font-weight: 750;
}


/* =========================================================
   RESPONSIVE BENEFICIOS
========================================================= */

@media (max-width: 991px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-support {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


@media (max-width: 575px) {

    .benefits-section {
        padding: 60px 0;
    }

    .benefits-heading {
        margin-bottom: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        min-height: 0;
    }

    .benefits-support {
        padding: 24px 22px;
    }

    .benefits-support-items {
        grid-template-columns: 1fr;
    }

    .benefits-closing {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* ANCLAS DEL HEADER */

#soluciones,
#operacion-cuidado,
#administracion,
#portal-familiar {
    scroll-margin-top: 95px;
}



/* =========================================================
   BOTÓN VOLVER ARRIBA
========================================================= */

.back-to-top {

    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1000;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #0875a5 !important;
    color: #ffffff;

    cursor: pointer;

    box-shadow: 0 8px 22px rgba(7,59,99,.22);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--asylum-blue-hover);
    transform: translateY(-3px);
}

.back-to-top i {
    line-height: 1;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* =====================================================
   INDICADORES - ADMINISTRACIÓN
===================================================== */

.admin-progress {
    width: 100%;
    height: 8px;
    background: #dce9ef;
    overflow: hidden;
    border-radius: 20px;
}

.admin-progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(
        90deg,
        #0088b5,
        #20a9a1
    );
    border-radius: 20px;
}

.admin-progress-fill.progress-compras {
    width: 72%;
}

.admin-progress-fill.progress-inventarios {
    width: 88%;
}

.admin-progress-fill.progress-cuentas {
    width: 64%;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 0;
    background:
        linear-gradient(
            110deg,
            #062d50 0%,
            #064a78 55%,
            #075f91 100%
        );
    color: #ffffff;
}

.site-footer .container {
    max-width: 1320px;
}


/* =========================================================
   ÁREA PRINCIPAL
========================================================= */
.site-footer > .container {
    max-width: 1320px;
}

.footer-main {
    display: grid;
    grid-template-columns:
		1.35fr
		.85fr
		1.05fr
		.85fr
		1.25fr;
    gap: 0;
    padding: 48px 0 38px;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-column {
    padding: 0 28px;
    border-left: 1px solid rgba(255,255,255,.16);
}


/* MARCA */

.footer-brand {
    padding-right: 38px;
}

.footer-logo {
    width: 150px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 290px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.7;

    text-align: justify;
    text-justify: inter-word;
}


/* TÍTULOS */

.footer-column h4 {
    margin: 0 0 22px;
    color: #24b6e7;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .7px;
}


/* =========================================================
   ENLACES
========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-links small {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);
    color: #07446f;

    font-size: 17px;
    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    background: #ffffff;
}


/* MENSAJE DE CONFIANZA */

.footer-trust {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.5;
}

.footer-trust > i {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 24px;
}

.footer-trust strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   CONTACTO
========================================================= */

.footer-contact {
    padding-right: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-bottom: 15px;

    color: rgba(255,255,255,.85);
    font-size: 13px;
    line-height: 1.45;
}

.footer-contact-item i {
    flex: 0 0 auto;
    width: 20px;

    color: #ffffff;
    font-size: 18px;
}


/* =========================================================
   FRANJA DE CONFIANZA / CONVERSIÓN
========================================================= */

.footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-action {
    display: flex;
    align-items: center;
    gap: 17px;

    min-width: 0;
    padding: 0 30px;
}

.footer-action:first-child {
    padding-left: 0;
}

.footer-action + .footer-action {
    border-left: 1px solid rgba(255,255,255,.16);
}

.footer-action-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;

    color: #ffffff;
    font-size: 22px;
}

.footer-action strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
}

.footer-action strong span {
    color: #27b8e8;
}

.footer-action p {
    margin: 0;

    color: rgba(255,255,255,.7);
    font-size: 12px;
    line-height: 1.5;
}


/* WHATSAPP */

.footer-whatsapp .footer-action-icon {
    border-color: rgba(48, 210, 103, .55);
    color: #35d16f;
}

.footer-whatsapp p span {
    color: #35d16f;
    font-weight: 600;
}


/* =========================================================
   PIE LEGAL
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 21px 0 23px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-legal a {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    text-decoration: none;

    transition: color .2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal span {
    width: 1px;
    height: 14px;

    background: rgba(255,255,255,.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
        row-gap: 38px;
    }

    .footer-column:nth-child(4) {
        border-left: 0;
        padding-left: 0;
    }

    .footer-actions {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-action {
        padding: 20px 0;
    }

    .footer-action + .footer-action {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }
}


@media (max-width: 767px) {

    .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 0 30px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-column {
        padding: 25px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
}

.footer-logo-wrapper {
    width: 290px;
    margin-bottom: 18px;

    display: flex;
    justify-content: center;
}

/*=========================================================
NOSOTROS
=========================================================*/

.about-section{

    padding:80px 0;

    background:#fff;

}

.about-experience{

    margin-top:55px;

}

.about-image{

    overflow:hidden;

    border-radius:26px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.about-image img{

    width:100%;

    display:block;

    border-radius:26px;

}

.about-content{

    max-width:560px;

    margin-left:auto;
	
	width:100%;

}

.section-title {
    margin-bottom: 20px;
    color: var(--asylum-navy);
    font-size: 46;
    font-weight: 650;
    letter-spacing: -1px;
	line-height:1.12;
}

.about-content p{

    font-size:17px;
    line-height:1.75;
    color:#5B7080;
    text-align:justify;
    text-justify:inter-word;
    margin-bottom:20px;

}

.section-label{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:.18em;

    color:#1186A3;

    text-transform:uppercase;

}

#nosotros .section-title{

    font-family: "Segoe UI", sans-serif !important;

    font-size:48px !important;

    font-weight:700 !important;

    line-height:1.08 !important;

    letter-spacing:-1px !important;

    color:var(--asylum-navy) !important;

}

#nosotros .about-content p{

    font-family:"Segoe UI", sans-serif !important;

    font-size:18px !important;

    font-weight:400 !important;

    line-height:1.85 !important;

    color:#5F6F84 !important;

}

/*=========================================================
VALORES - NOSOTROS
=========================================================*/

.about-values{

    padding:70px 0;

}

.value-card{

    background:#fff;

    border:1px solid #E6EEF5;

    border-radius:22px;

    padding:42px;

    height:100%;

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 50px rgba(17,72,110,.10);

}

.value-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#EFF8FC;

    color:#1186A3;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.value-card h3{

    font-size:33px;

    font-weight:700;

    color:#0C2142;

    margin-bottom:22px;

    line-height:1.2;

}

.value-card p{

    font-size:18px;

    line-height:1.9;

    color:#5F6F84;

    text-align:justify;

}

/*=========================================================
EXPERIENCIA
=========================================================*/

.about-story-section{

    padding:20px 0 45px;

}

/*=========================================================
ADMINISTRACIÓN
=========================================================*/

.about-admin-section{

    padding:10px 0 45x;

}

/*=========================================================
SOLUCIÓN ESPECIALIZADA
=========================================================*/

.about-specialized-section{

    padding:10px 0 60px;

}

.specialized-card{

    background:#F5FAFD;

    border:1px solid #D8EAF5;

    border-radius:28px;

    padding:50px;

    box-shadow:0 20px 45px rgba(15,53,84,.05);

}

.specialized-logo{

    width:140px;

    max-width:100%;

}

.section-title-sm{

    font-size:34px;

    font-weight:700;

    color:var(--asylum-navy);

    margin:10px 0 18px;

    line-height:1.2;

}

.specialized-card p{

    font-size:18px;

    line-height:1.85;

    color:#5F6F84;

    text-align:justify;

}

/*=========================================================
SOLICITAR DEMOSTRACIÓN
=========================================================*/

.demo-section{

    padding:45px 0 35px;

    background:#ffffff;

}

.demo-content{

    max-width:560px;

}

.demo-content p{

    font-size:18px;

    line-height:1.85;

    color:#5F6F84;

    text-align:justify;

    margin-bottom:22px;

}

.demo-button{

    margin-top:20px;

    padding:16px 34px;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

}

/*==================================================
FORMAS DE CONTACTO
==================================================*/

.contact-options{

    padding:50px 0 40px;

    background:#fff;

}

.contact-options .section-heading{

    max-width:760px;

    margin:auto;

}

.contact-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    height:100%;

    border:1px solid #e7eef6;

    transition:.30s;

    box-shadow:0 15px 40px rgba(15,45,85,.06);

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(15,45,85,.12);

}

.contact-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#edf7ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.contact-icon i{

    font-size:34px;

    color:#0b6ea8;

}

.contact-card h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:6px;

}

.contact-card span{

    color:#0b6ea8;

    font-weight:600;

}

.contact-card ul{

    margin-top:25px;

    padding-left:18px;

}

.contact-card ul li{

    margin-bottom:12px;

    color:#5d6f86;

}

.contact-data{

    margin-top:25px;

}

.contact-data p{

    margin-bottom:18px;

    font-size:17px;

}

.contact-data i{

    color:#0b6ea8;

    margin-right:10px;

}

.whatsapp-card .contact-icon{

    background:#e9f9ef;

}

.whatsapp-card .contact-icon i{

    color:#25D366;

}

/*==================================================
FORMULARIO DE DEMOSTRACIÓN
==================================================*/

.demo-form-section{

    padding:20px 0 45px;

    background:#fff;

}

.demo-form-card{

    background:#ffffff;

    border:1px solid #e6eef6;

    border-radius:28px;

    padding:50px;

    box-shadow:0 18px 50px rgba(18,52,86,.08);

    transition:.30s;

}

.demo-form-card:hover{

    box-shadow:0 25px 60px rgba(18,52,86,.10);

}

/*--------------------------------*/

.demo-info{

    padding-right:40px;

}

.demo-icon{

    width:78px;

    height:78px;

    border-radius:20px;

    background:#edf7ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.demo-icon i{

    font-size:32px;

    color:#0b6ea8;

}

.demo-info h3{

    font-size:40px;

    font-weight:800;

    color:#07254d;

    margin-bottom:18px;

}

.demo-info p{

    color:#5e6f86;

    line-height:1.9;

    margin-bottom:28px;

}

.demo-info ul{

    list-style:none;

    padding:0;

    margin:0;

}

.demo-info li{

    margin-bottom:18px;

    font-size:17px;

    color:#334155;

}

.demo-info li i{

    color:#20b26b;

    margin-right:10px;

}

/*--------------------------------*/

.demo-form .form-control,

.demo-form .form-select{

    height:58px;

    border-radius:14px;

    border:1px solid #dbe6f2;

    box-shadow:none;

    transition:.25s;

}

.demo-form textarea.form-control{

    height:auto;

    min-height:170px;

    padding-top:15px;

    resize:none;

}

.demo-form .form-control:focus,

.demo-form .form-select:focus{

    border-color:#0b6ea8;

    box-shadow:0 0 0 .20rem rgba(11,110,168,.12);

}

/*--------------------------------*/

.form-check{

    margin-top:10px;

}

.form-check-input{

    width:20px;

    height:20px;

    cursor:pointer;

}

.form-check-label{

    margin-left:8px;

    color:#5c6b80;

}

/*--------------------------------*/

.demo-form .btn{

    margin-top:10px;

    height:60px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    padding:0 45px;

    background:linear-gradient(135deg,#0b6ea8,#145a87);

    border:none;

    transition:.30s;
	
	min-width:320px;
	
	float:right;

}

.demo-form .btn:hover{

    transform:translateY(-3px);
	
	filter:brightness(1.05);

    box-shadow:0 15px 30px rgba(11,110,168,.28);

}

/*--------------------------------*/
/* BOTONES DEL FORMULARIO */
/*--------------------------------*/

.demo-form-actions{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

    margin-top:10px;

}

.demo-form-actions .btn-outline-secondary{

    height:60px;

    border-radius:14px;

    padding:0 25px;

    font-size:16px;

    font-weight:600;

    color:#5e6f86;

    border-color:#dbe6f2;

    background:#fff;

    transition:.30s;

}

.demo-form-actions .btn-outline-secondary:hover{

    color:#0b6ea8;

    border-color:#0b6ea8;

    background:#f5faff;

}

.demo-form-actions .btn-primary{

    float:none;

    margin-top:0;

}

/*--------------------------------*/
/* CELULAR */
/*--------------------------------*/

@media(max-width:576px){

    .demo-form-actions{

        flex-direction:column-reverse;

        align-items:stretch;

    }

    .demo-form-actions .btn{

        width:100%;

        min-width:0;

    }

}

/*--------------------------------*/

@media(max-width:991px){

.demo-form-card{

    padding:35px;

}

.demo-info{

    padding-right:0;

    margin-bottom:35px;

}

.demo-info h3{

    font-size:34px;

    line-height:1.2;

}

}   /* <-- ESTA LLAVE FALTABA */

/*==================================================*
CIERRE DE CONFIANZA
*==================================================*/

.trust-strip{

    padding:25px 0 35px;

    background:#ffffff;

}

.trust-item{

    text-align:center;

    padding:15px;

}

.trust-item i{

    width:72px;

    height:72px;

    margin:0 auto 22px;

    border-radius:50%;

    background:#edf7ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#0b6ea8;

}

.trust-item h5{

    font-size:28px;

    font-weight:700;

    color:#07254d;

    margin-bottom:15px;

}

.trust-item p{

    font-size:16px;

    color:#5f6f84;

    line-height:1.7;

}

/*==================================================*
* MENSAJE DE ÉXITO - DEMOSTRACIÓN
*==================================================*/

.demo-success-message{

    max-width:900px;

    margin:0 auto 30px;

    padding:30px 35px;

    background:#f1fbf6;

    border:1px solid #ccefe0;

    border-radius:22px;

    text-align:center;

    box-shadow:0 12px 35px rgba(18,52,86,.06);

}

.demo-success-icon{

    width:64px;

    height:64px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#20b26b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.demo-success-message h3{

    margin-bottom:10px;

    color:#07254d;

    font-size:28px;

    font-weight:700;

}

.demo-success-message p{

    margin:0 auto;

    max-width:720px;

    color:#5f6f84;

    font-size:17px;

    line-height:1.7;

}

/* =========================================================
   CERRAR MENSAJE DE SOLICITUD RECIBIDA
========================================================= */

.demo-success-message {
	position: relative;
}

.demo-success-close {
	position: absolute;
	top: 18px;
	right: 20px;

	width: 36px;
	height: 36px;

	border: none;
	border-radius: 50%;

	background: transparent;

	color: #5e6f86;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;

	font-size: 16px;

	transition: .25s;
}

.demo-success-close:hover {
	background: rgba(11,110,168,.10);
	color: #0b6ea8;
	transform: scale(1.05);
}

/*=========================================================*
* AVISO DE PRIVACIDAD
*=========================================================*/

.privacy-hero{

	padding:85px 0 70px;

	background:linear-gradient(
		135deg,
		#f4faff 0%,
		#ffffff 100%
	);

	border-bottom:1px solid #e7eef6;

}

.privacy-hero-content{

	max-width:900px;

	margin:0 auto;

	text-align:center;

}

.privacy-hero h1{

	margin:18px 0 20px;

	font-size:52px;

	font-weight:800;

	color:var(--asylum-navy);

	line-height:1.15;

}

.privacy-hero p{

	max-width:760px;

	margin:0 auto;

	font-size:19px;

	line-height:1.8;

	color:#5f6f84;

}

.privacy-updated{

	display:inline-flex;

	align-items:center;

	gap:9px;

	margin-top:25px;

	padding:10px 18px;

	border-radius:30px;

	background:#edf7ff;

	color:#0b6ea8;

	font-size:15px;

}

.privacy-updated i{

	font-size:17px;

}


/*=========================================================*
* CONTENEDOR PRINCIPAL
*=========================================================*/

.privacy-section{

	padding:65px 0 80px;

	background:#fff;

}

.privacy-card{

	max-width:1000px;

	margin:0 auto;

	background:#fff;

	border:1px solid #e5edf5;

	border-radius:28px;

	padding:60px;

	box-shadow:0 18px 50px rgba(18,52,86,.07);

}


/*=========================================================*
* BLOQUES
*=========================================================*/

.privacy-section-block{

	padding:0 0 45px;

	margin-bottom:45px;

	border-bottom:1px solid #e8eef4;

}

.privacy-section-block:last-of-type{

	margin-bottom:0;

	border-bottom:none;

}

.privacy-heading{

	display:flex;

	align-items:center;

	gap:16px;

	margin-bottom:22px;

}

.privacy-heading span{

	width:46px;

	height:46px;

	flex:0 0 46px;

	display:flex;

	align-items:center;

	justify-content:center;

	border-radius:14px;

	background:#edf7ff;

	color:#0b6ea8;

	font-size:15px;

	font-weight:800;

}

.privacy-heading h2{

	margin:0;

	font-size:30px;

	font-weight:750;

	color:#07254d;

	line-height:1.25;

}

.privacy-section-block p{

	margin:0 0 18px;

	font-size:17px;

	line-height:1.85;

	color:#5e6f86;

}

.privacy-section-block p:last-child{

	margin-bottom:0;

}

.privacy-section-block h3{

	margin:28px 0 15px;

	font-size:20px;

	font-weight:700;

	color:#07254d;

}


/*=========================================================*
* LISTAS
*=========================================================*/

.privacy-list{

	margin:20px 0 25px;

	padding-left:25px;

}

.privacy-list li{

	margin-bottom:13px;

	padding-left:7px;

	font-size:17px;

	line-height:1.7;

	color:#5e6f86;

}

.privacy-list li::marker{

	color:#0b6ea8;

}


/*=========================================================*
* CAJA DE CONTACTO
*=========================================================*/

.privacy-contact-box{

	display:grid;

	grid-template-columns:1fr 1fr;

	gap:20px;

	margin-top:28px;

	padding:25px;

	background:#f7fbfe;

	border:1px solid #e0edf6;

	border-radius:18px;

}

.privacy-contact-box > div{

	display:flex;

	align-items:flex-start;

	gap:14px;

}

.privacy-contact-box i{

	width:42px;

	height:42px;

	flex:0 0 42px;

	display:flex;

	align-items:center;

	justify-content:center;

	border-radius:12px;

	background:#edf7ff;

	color:#0b6ea8;

	font-size:19px;

}

.privacy-contact-box strong{

	display:block;

	margin-bottom:4px;

	color:#334155;

	font-size:15px;

}

.privacy-contact-box a,

.privacy-contact-box span{

	color:#0b6ea8;

	font-size:16px;

	text-decoration:none;

}

.privacy-contact-box a:hover{

	text-decoration:underline;

}


/*=========================================================*
* AVISO IMPORTANTE
*=========================================================*/

.privacy-notice{

	display:flex;

	align-items:flex-start;

	gap:16px;

	margin-top:25px;

	padding:22px 24px;

	background:#f5faff;

	border-left:4px solid #0b6ea8;

	border-radius:12px;

}

.privacy-notice i{

	color:#0b6ea8;

	font-size:22px;

	margin-top:3px;

}

.privacy-notice p{

	margin:0;

	font-size:16px;

	line-height:1.75;

}


/*=========================================================*
* DERECHOS ARCO
*=========================================================*/

.arco-grid{

	display:grid;

	grid-template-columns:repeat(4,1fr);

	gap:16px;

	margin-top:28px;

}

.arco-item{

	padding:25px 20px;

	background:#f8fbfd;

	border:1px solid #e4edf5;

	border-radius:18px;

	text-align:center;

	transition:.25s;

}

.arco-item:hover{

	transform:translateY(-5px);

	box-shadow:0 15px 35px rgba(18,52,86,.08);

}

.arco-item > strong{

	width:52px;

	height:52px;

	margin:0 auto 14px;

	display:flex;

	align-items:center;

	justify-content:center;

	border-radius:50%;

	background:#edf7ff;

	color:#0b6ea8;

	font-size:22px;

	font-weight:800;

}

.arco-item h3{

	margin:0 0 9px;

	font-size:19px;

	color:#07254d;

}

.arco-item p{

	margin:0;

	font-size:15px;

	line-height:1.6;

}


/*=========================================================*
* CORREO DESTACADO
*=========================================================*/

.privacy-email{

	display:inline-flex;

	align-items:center;

	gap:12px;

	margin:5px 0 25px;

	padding:14px 20px;

	background:#edf7ff;

	border-radius:12px;

}

.privacy-email i{

	color:#0b6ea8;

	font-size:19px;

}

.privacy-email a{

	color:#0b6ea8;

	font-weight:650;

	text-decoration:none;

}

.privacy-email a:hover{

	text-decoration:underline;

}


/*=========================================================*
* DATOS DE CONTACTO
*=========================================================*/

.privacy-contact-details{

	padding:25px 28px;

	background:#f8fbfd;

	border:1px solid #e5edf4;

	border-radius:18px;

}

.privacy-contact-details p{

	margin-bottom:13px;

}

.privacy-contact-details p:last-child{

	margin-bottom:0;

}

.privacy-contact-details a{

	color:#0b6ea8;

	text-decoration:none;

}

.privacy-contact-details a:hover{

	text-decoration:underline;

}


/*=========================================================*
* CIERRE
*=========================================================*/

.privacy-final{

	margin-top:10px;

	padding:40px;

	background:linear-gradient(
		135deg,
		#f1f9fd,
		#f8fcff
	);

	border:1px solid #dcecf5;

	border-radius:22px;

	text-align:center;

}

.privacy-final > i{

	width:68px;

	height:68px;

	margin:0 auto 18px;

	display:flex;

	align-items:center;

	justify-content:center;

	border-radius:50%;

	background:#edf7ff;

	color:#0b6ea8;

	font-size:30px;

}

.privacy-final h2{

	margin:0 0 12px;

	font-size:28px;

	font-weight:750;

	color:#07254d;

}

.privacy-final p{

	max-width:700px;

	margin:0 auto;

	font-size:17px;

	line-height:1.8;

	color:#5e6f86;

}


/*=========================================================*
* RESPONSIVE
*=========================================================*/

@media(max-width:991px){

	.privacy-hero{

		padding:65px 0 55px;

	}

	.privacy-hero h1{

		font-size:42px;

	}

	.privacy-card{

		padding:45px 35px;

	}

	.arco-grid{

		grid-template-columns:repeat(2,1fr);

	}

}


@media(max-width:767px){

	.privacy-hero{

		padding:50px 0 45px;

	}

	.privacy-hero h1{

		font-size:36px;

	}

	.privacy-hero p{

		font-size:17px;

	}

	.privacy-section{

		padding:40px 0 55px;

	}

	.privacy-card{

		padding:30px 22px;

		border-radius:20px;

	}

	.privacy-heading{

		align-items:flex-start;

	}

	.privacy-heading h2{

		font-size:24px;

	}

	.privacy-contact-box{

		grid-template-columns:1fr;

	}

	.arco-grid{

		grid-template-columns:1fr;

	}

	.privacy-final{

		padding:30px 22px;

	}

}

/*=========================================================*
* AVISO DE PRIVACIDAD - AJUSTE COMPACTO
*=========================================================*/

.privacy-hero {
	padding: 55px 0 45px;
}

.privacy-hero h1 {
	font-size: 44px;
	margin: 12px 0 15px;
}

.privacy-hero p {
	font-size: 17px;
	line-height: 1.65;
}

.privacy-updated {
	margin-top: 18px;
	padding: 8px 16px;
}


/*---------------------------------------------------------*/

.privacy-section {
	padding: 45px 0 55px;
}

.privacy-card {
	padding: 42px;
	border-radius: 24px;
}


/*---------------------------------------------------------*/

.privacy-section-block {
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.privacy-heading {
	gap: 13px;
	margin-bottom: 16px;
}

.privacy-heading span {
	width: 40px;
	height: 40px;
	flex-basis: 40px;
	border-radius: 12px;
	font-size: 14px;
}

.privacy-heading h2 {
	font-size: 25px;
}

.privacy-section-block p {
	margin-bottom: 13px;
	font-size: 16px;
	line-height: 1.7;
}

.privacy-section-block h3 {
	margin: 20px 0 12px;
	font-size: 18px;
}


/*---------------------------------------------------------*/

.privacy-list {
	margin: 15px 0 20px;
	padding-left: 22px;
}

.privacy-list li {
	margin-bottom: 8px;
	padding-left: 4px;
	font-size: 16px;
	line-height: 1.55;
}


/*---------------------------------------------------------*/

.privacy-contact-box {
	gap: 15px;
	margin-top: 20px;
	padding: 18px;
}

.privacy-contact-box i {
	width: 38px;
	height: 38px;
	flex-basis: 38px;
	font-size: 17px;
}


/*---------------------------------------------------------*/

.privacy-notice {
	gap: 12px;
	margin-top: 18px;
	padding: 16px 18px;
}

.privacy-notice p {
	font-size: 15px;
	line-height: 1.6;
}


/*---------------------------------------------------------*
* ARCO
*---------------------------------------------------------*/

.arco-grid {
	gap: 12px;
	margin-top: 20px;
}

.arco-item {
	padding: 18px 15px;
	border-radius: 15px;
}

.arco-item > strong {
	width: 44px;
	height: 44px;
	margin-bottom: 10px;
	font-size: 19px;
}

.arco-item h3 {
	margin-bottom: 6px;
	font-size: 18px;
}

.arco-item p {
	font-size: 14px;
	line-height: 1.5;
}


/*---------------------------------------------------------*/

.privacy-email {
	gap: 9px;
	margin: 3px 0 18px;
	padding: 10px 15px;
}


/*---------------------------------------------------------*/

.privacy-contact-details {
	padding: 18px 22px;
}

.privacy-contact-details p {
	margin-bottom: 9px;
}


/*---------------------------------------------------------*/

.privacy-final {
	margin-top: 5px;
	padding: 28px;
	border-radius: 18px;
}

.privacy-final > i {
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	font-size: 25px;
}

.privacy-final h2 {
	margin-bottom: 8px;
	font-size: 24px;
}

.privacy-final p {
	font-size: 16px;
	line-height: 1.65;
}


/*=========================================================*
* RESPONSIVE - COMPACTO
*=========================================================*/

@media(max-width: 991px) {

	.privacy-hero {
		padding: 48px 0 40px;
	}

	.privacy-hero h1 {
		font-size: 38px;
	}

	.privacy-card {
		padding: 32px;
	}

}


@media(max-width: 767px) {

	.privacy-hero {
		padding: 40px 0 35px;
	}

	.privacy-hero h1 {
		font-size: 32px;
	}

	.privacy-section {
		padding: 32px 0 45px;
	}

	.privacy-card {
		padding: 25px 18px;
	}

	.privacy-heading h2 {
		font-size: 22px;
	}

}

/* =========================================================
   IMAGEN REAL - PORTAL FAMILIAR
========================================================= */

.portal-familiar-image {
    display: block;
    width: 100%;
    max-width: 760px; /* antes 620px */
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 45, 90, 0.15);
}