*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**** FONTS ****/

/* ==== Bupa / Sanitas Icons ==== */
@font-face {
    font-family: "bupaicons_ds";
    src: url("/images/icons/bupaicons_ds.woff2") format("woff2");
}

/* ==== Montserrat ==== */
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==== Gotham ==== */
@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-XLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Black.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/gotham/Gotham-Ultra.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/**** BASE ****/

:root {
    --bupa-blue: #0079c8;
    --bupa-blue-dark: #005eb8;
    --bupa-navy: #0d1846;
    --bupa-orange: #db3907;
    --bupa-orange-dark: #b72900;
    --bupa-green: #1b883c;
    --whatsapp-green: #22c55e;
    --whatsapp-green-dark: #16a34a;
    --warm-grey: #f7f5f2;
    --soft-blue: #ddedf8;
    --text: #21272a;
    --text-muted: #4a5565;
    --line: #e9eef3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", "Gotham", Arial, Helvetica, sans-serif;
    color: #1b1b1b;
    background: #ffffff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/**** HEADER ****/

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0px 0 10px 1px black;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img {
    height: 42px;
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    color: #16324f;
    font-weight: 600;
    font-size: 18px;
    padding: 26px 18px;
    display: flex;
    align-items: center;
    transition: 0.2s ease;
}

.desktop-nav a:hover {
    background: var(--bupa-blue);
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* HEADER MINI CTA */

.header-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    text-decoration: none;
    gap: 8px;
}

.header-mini span {
    width: 64px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(13, 24, 70, 0.12);
    transition: 0.2s ease;
}

.header-mini small {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
    color: #16324f;
    text-align: center;
    white-space: nowrap;
}

.header-mini-wa span {
    background: #22c55e;
    font-size: 0;
    position: relative;
}

.header-mini-wa span::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("../images/icons/whatsapp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.header-mini-wa:hover span {
    background: #16a34a;
}

.header-mini:hover span {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13, 24, 70, 0.18);
}

.header-mini-info span {
    background: #0079c8;
}

.header-mini-info:hover span {
    background: #005eb8;
}

.header-mini-buy span {
    background: #db3907;
}

.header-mini-buy:hover span {
    background: #b72900;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 34px;
    color: #0d1842;
    line-height: 1;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 24, 66, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 1998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(420px, 100%);
    height: 100vh;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #e7ecf2;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 34px;
    color: #0d1842;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-menu-content > a {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 24px;

    font-size: 18px;
    font-weight: 600;
    color: #0d1842;

    border-bottom: 1px solid #e7ecf2;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-menu-content > a:active {
    background: #f4f8fc;
    padding-left: 30px;
}

.mobile-menu-group {
    border-bottom: 1px solid #e7ecf2;
}

.mobile-menu-group-toggle {
    width: 100%;
    min-height: 62px;
    padding: 0 24px;
    border: 0;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0d1842;

    transition:
        background 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-menu-group-toggle:active {
    background: #f4f8fc;
    padding-left: 30px;
}

.mobile-menu-arrow {
    font-size: 28px;
    color: #0079c8;
    transition: transform 0.25s ease;
}

.mobile-menu-submenu {
    display: none;
    background: #f7fafd;
}

.mobile-menu-submenu a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 24px 0 42px;

    font-size: 16px;
    font-weight: 500;
    color: #0d1842;

    border-top: 1px solid #e7ecf2;
}

.mobile-menu-group.active .mobile-menu-submenu {
    display: block;
}

.mobile-menu-group.active .mobile-menu-arrow {
    transform: rotate(180deg);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/**** BOTONES ****/

.btn-whatsapp,
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.2s ease;
    min-height: 52px;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-whatsapp,
.btn-primary {
    background: var(--whatsapp-green);
    color: #ffffff;
}

.btn-primary:hover,
.btn-whatsapp:hover {
    background: var(--whatsapp-green-dark);
    color: #ffffff;
}

.btn-whatsapp::before,
.btn-primary::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-image: url("../images/icons/whatsapp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.btn-secondary {
    background: var(--bupa-blue-dark);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #004b91;
    border-color: #004b91;
    color: #ffffff;
}

.btn-outline {
    border-color: var(--bupa-blue-dark);
    color: var(--bupa-blue-dark);
}

.btn-header-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--bupa-orange);
    color: #ffffff !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.btn-header-buy:hover {
    background: #b92d00;
    color: #ffffff !important;
}

.btn-cta-buy {
    background: var(--bupa-orange);
    border-color: var(--bupa-orange);
    color: #ffffff;
}

.btn-cta-buy:hover {
    background: var(--bupa-orange-dark);
    border-color: var(--bupa-orange-dark);
    color: #ffffff;
}
/* SISTEMA BASE BOTONES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 12px;
    border: 2px solid transparent;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s ease;
}

/* Variantes */

.btn-blue {
    background: #0079c8;
    color: #ffffff;
}

.btn-blue:hover {
    background: #005eb8;
    color: #ffffff;
}

.btn-green {
    background: #22c55e;
    color: #ffffff;
}

.btn-green:hover {
    background: #16a34a;
    color: #ffffff;
}

.btn-orange {
    background: #db3907;
    color: #ffffff;
}

.btn-orange:hover {
    background: #b72900;
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    border-color: #0079c8;
    color: #0079c8;
}

.btn-outline:hover {
    background: #0079c8;
    color: #ffffff;
}

/* Flecha Sanitas */

.btn-arrow::after {
    content: "\eac8";
    font-family: "bupaicons_ds";
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
}

/* Material Icons en botones */
.btn-header-buy .material-symbols-outlined,
.btn-secondary .material-symbols-outlined,
.btn-cta-buy .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.btn-secondary,
.btn-cta-buy {
    gap: 10px;
}

/**** HERO ****/

.hero {
    position: relative;
    min-height: 720px;
    padding: 90px 0 80px;
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/student-main.jpg") center right / cover no-repeat;
}

.hero-coberturas {
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/student-coberturas.jpg") center right / cover no-repeat;
}

.hero-visado {
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/student-visado.jpg") center right / cover no-repeat;
}

.hero-faq {
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/faq.jpg") center right / cover no-repeat;
}

.hero-precios {
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/student-precios.jpg") center right / cover no-repeat;
}

.hero-formulario {
    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.96) 0%, rgba(247, 245, 242, 0.92) 26%, rgba(247, 245, 242, 0.58) 58%, rgba(247, 245, 242, 0.12) 66%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/student-formulario.jpg") center right / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 121, 200, 0.08) 0%, rgba(13, 24, 70, 0.04) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 680px) 320px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--soft-blue);
    color: var(--bupa-blue);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -1.4px;
    margin-bottom: 24px;
    color: var(--bupa-navy);
    font-weight: 700;
    max-width: 780px;
}

.hero p {
    font-size: 22px;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
}

/* Botones hero + microleyendas */
/* Botones hero + microleyendas */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 0;
}

.hero-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-action-item small {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    color: #16324f;
    font-weight: 600;
}

/* Beneficios inferiores premium */
.hero-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin-top: 72px;
    color: var(--bupa-navy);
    font-weight: 600;
}

.hero-points li {
    position: relative;
    padding-left: 34px;
    padding-right: 26px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #16324f;
    white-space: nowrap;
    line-height: 1.45;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid var(--whatsapp-green-dark);
    border-radius: 50%;
    color: var(--whatsapp-green-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-points li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 4px;
    width: 1px;
    height: 18px;
    background: #d8d8d8;
}

/* Tarjeta derecha hero */
.hero-card {
    position: relative;
    top: -150px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow: 0 18px 45px rgba(13, 24, 70, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.hero-card-head img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-card-head h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.05;
    color: var(--bupa-navy);
    font-weight: 700;
}

.hero-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.hero-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

.hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bupa-blue);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.hero-contacto {
    min-height: 680px;

    background:
        linear-gradient(90deg, rgba(247, 245, 242, 0.97) 0%, rgba(247, 245, 242, 0.93) 28%, rgba(247, 245, 242, 0.62) 58%, rgba(247, 245, 242, 0.16) 70%, rgba(247, 245, 242, 0) 100%),
        url("../images/art/contacto.jpg") center right / cover no-repeat;
}

/****** HERO CONTACT *****/

.contact-panel {
    background: rgba(255, 255, 255, 0.82);

    -webkit-backdrop-filter: blur(18px);

    backdrop-filter: blur(18px);

    border-radius: 32px;

    padding: 42px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);

    width: 100%;

    max-width: 620px;

    margin-left: auto;
}

.contact-panel h3 {
    font-size: 42px;

    line-height: 1.05;

    color: var(--heading-color);

    margin-bottom: 34px;
}
.contact-method {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-method:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.contact-method-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 18px;

    background: #f4f8fc;

    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-method-icon .bupa-icon {
    font-size: 30px;

    color: var(--primary-color);

    line-height: 1;
}
.contact-method-text strong {
    display: block;

    font-size: 20px;

    color: var(--heading-color);

    margin-bottom: 6px;
}

.contact-method-text p {
    margin: 0;

    font-size: 16px;

    line-height: 1.5;

    color: var(--text-color);
}

.contact-method-icon .material-symbols-outlined {
    font-size: 0;

    line-height: 0;
}

.contact-method-icon .material-symbols-outlined::before {
    width: 40px;
    height: 40px;

    background-image: url(../images/icons/whatsapp.png);

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: block;

    content: "";
}

.contact-human-proof {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 38px;

    margin-bottom: 42px;
}

.contact-human-avatars {
    display: flex;
}

.contact-human-avatars img {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #fff;

    margin-left: -12px;

    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.contact-human-avatars img:first-child {
    margin-left: 0;
}

.contact-human-text {
    padding-left: 14px;
}

.contact-human-text strong {
    display: block;

    font-size: 20px;

    color: var(--heading-color);

    margin-bottom: 4px;
}

.contact-human-text p {
    margin: 0;

    font-size: 16px;

    color: var(--text-color);
}

.contact-trust-strip {
    padding: 10px 0 20px;
}

.contact-trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #eef6fc;

    border-radius: 28px;

    overflow: hidden;
}

.contact-trust-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 34px 30px;

    position: relative;
}

.contact-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 28px;
    right: 0;

    width: 1px;
    height: calc(100% - 56px);

    background: rgba(0, 84, 166, 0.14);
}

.contact-trust-item .support-icon {
    min-width: 54px;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);

    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-trust-item > div > strong {
    display: block;

    font-size: 22px;

    line-height: 1.2;

    color: var(--heading-color);

    margin-bottom: 10px;
    min-height: 54px;
}

.contact-trust-item p {
    margin: 0;

    font-size: 17px;

    line-height: 1.55;

    color: var(--text-color);
}

.hero-contacto .hero-points li {
    font-size: 15px;
}

.hero-contacto .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 520px);

    align-items: center;

    gap: 80px;
}

/* TRUST STRIP */

.trust-strip {
    background: #0d1846;
    padding: 22px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    min-height: 52px;
}

.bupa-icon {
    font-family: "bupaicons_ds";
    -webkit-font-smoothing: antialiased;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    flex-shrink: 0;
}

.trust-item span:last-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

/* VISA BLOCK */

.visa-block {
    padding: 70px 0;
    background: #ffffff;
}

.visa-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: start;
}

.visa-left h2 {
    font-size: 30px;
    line-height: 40px;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 22px;
    max-width: 760px;
}

.visa-left p {
    font-size: 19px;
    line-height: 1.6;
    color: #4a5565;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 720px;
}

.visa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 2px solid #0079c8;
    border-radius: 12px;
    color: #0079c8;
    font-size: 16px;
    font-weight: 700;
    transition: 0.2s ease;
}

.visa-btn:hover {
    background: #0079c8;
    color: #ffffff;
}

.visa-card {
    background: #eef5fb;
    border: 1px solid #d7e6f5;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.visa-card-text strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    color: #0079c8;
    font-weight: 600;
    margin-bottom: 14px;
}

.visa-card-text p {
    font-size: 17px;
    line-height: 1.55;
    color: #4a5565;
    margin: 0;
}

.visa-card-icon {
    width: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-card-icon img {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/***********************************************
    VISA REQUIREMENTS
***********************************************/

.visa-requirements-block {
    padding: 70px 0;
    background: #ffffff;
}

.visa-requirements-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 42px;
    align-items: start;
}

.visa-requirements-left h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: 900px;
}

.visa-requirements-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6678;
    font-weight: 300;
    margin-bottom: 40px;
}

/* GRID */

.visa-requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

/* ITEM */

.visa-requirement-item {
    text-align: center;
}

.visa-requirement-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 56px;
    line-height: 1;
    margin: 0 auto 18px;
}

.visa-requirement-item h3 {
    font-size: 22px;
    line-height: 1.2;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 12px;
}

.visa-requirement-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6678;
    font-weight: 300;
}

.visa-requirement-item p span {
    color: #0079c8;
    font-weight: 600;
}

/* CARD */

.visa-coverage-card {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 24px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(13, 24, 70, 0.05);
}

.visa-coverage-icon {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 62px;
    line-height: 1;
    margin: 0 auto 24px;
}

.visa-coverage-card h3 {
    font-size: 30px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 18px;
}

.visa-coverage-card p {
    font-size: 18px;
    line-height: 1.65;
    color: #5a6678;
    font-weight: 300;
    margin-bottom: 28px;
}

.visa-coverage-card strong {
    color: #0d1846;
    font-weight: 700;
}

.visa-coverage-card .btn {
    width: 100%;
}

/* COVERS BLOCK */

.covers-block {
    padding: 70px 0;
    border-top: 1px solid #e6eaf0;
    background: #ffffff;
}

.covers-head {
    text-align: center;
    margin-bottom: 34px;
}

.covers-head h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 10px;
}

.covers-head p {
    font-size: 18px;
    color: #5a6678;
    font-weight: 400;
}

.covers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.coberturas-page .covers-grid-coberturas {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.coberturas-page .covers-grid-coberturas .cover-card {
    min-height: 270px;
    padding: 32px 26px 26px;
}

.cover-card {
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 16px;
    padding: 28px 22px 22px;
    min-height: 240px;
    text-align: center;
    position: relative;
    transition: 0.2s ease;
}

.cover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.cover-card::before {
    display: block;
    font-family: "bupaicons_ds";
    font-size: 60px;
    line-height: 1;
    color: #0079c8;
    margin-bottom: 18px;
}

.cover-card h3 {
    font-size: 21px;
    line-height: 1.2;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 14px;
}

.cover-card p {
    font-size: 16px;
    line-height: 1.55;
    color: #5a6678;
    font-weight: 400;
}

/***********************************************
    VISA DURATION INFO
***********************************************/

.visa-duration-info {
    padding: 0 0 70px;
    background: #ffffff;
}

.visa-duration-box {
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    border-radius: 24px;
    padding: 42px;
}

/* HEAD */

.visa-duration-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
}

.visa-duration-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 56px;
    line-height: 1;
    flex-shrink: 0;
}

.visa-duration-head h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-top: 8px;
}

/* CONTENT */

.visa-duration-content > p {
    font-size: 18px;
    line-height: 1.75;
    color: #4a5565;
    font-weight: 300;
    margin-bottom: 18px;
}

/* LIST */

.visa-duration-points {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.visa-duration-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
}

.visa-duration-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #0079c8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.visa-duration-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5565;
    font-weight: 400;
}

/* NOTE */

.visa-duration-note {
    position: relative;
    margin-top: 34px;
    padding: 24px 28px 24px 34px;
    border-radius: 18px;
    background: #ffffff;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5565;
}

.visa-duration-note::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    bottom: 16px;
    width: 5px;
    border-radius: 999px;
    background: #0079c8;
}

.visa-duration-note strong {
    color: #0d1846;
    font-weight: 600;
}

/* COVERTURAS PAGE - DETAIL BLOCKS */

.coberturas-page .coverage-detail-card {
    margin-top: 36px;
    padding: 38px;
    border-radius: 24px;
    background: #eaf7ff;
    border: 1px solid #cfe8f7;
}

.coberturas-page .coverage-detail-head {
    max-width: 980px;
    margin-bottom: 30px;
}

.coberturas-page .coverage-detail-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0079c8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.coberturas-page .coverage-detail-head h3 {
    font-size: 32px;
    line-height: 1.15;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 14px;
}

.coberturas-page .coverage-detail-head p {
    font-size: 17px;
    line-height: 1.65;
    color: #40516a;
}

.coberturas-page .coverage-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.coberturas-page .coverage-program {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 121, 200, 0.12);
    border-radius: 18px;
    padding: 22px;
}

.coberturas-page .coverage-program h4 {
    font-size: 18px;
    line-height: 1.25;
    color: #0079c8;
    font-weight: 700;
    margin-bottom: 8px;
}

.coberturas-page .coverage-program p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #40516a;
}

.coberturas-page .coverage-extra-programs {
    margin-top: 26px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.58);
    border-radius: 18px;
}

.coberturas-page .coverage-extra-programs p {
    font-size: 16px;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 14px;
}

.coberturas-page .coverage-extra-programs ul {
    margin: 0;
    padding-left: 20px;
}

.coberturas-page .coverage-extra-programs li {
    font-size: 15.5px;
    line-height: 1.65;
    color: #40516a;
    margin-bottom: 8px;
}

.coberturas-page .coverage-extra-programs li:last-child {
    margin-bottom: 0;
}

.coberturas-page .coverage-extra-programs strong {
    color: #0d1846;
    font-weight: 700;
}

/* URGENCIAS 24H */

.coberturas-page .coverage-feature-urgent {
    background: linear-gradient(135deg, #eef8ff 0%, #dff2ff 100%);

    border: 1px solid #bfe3f8;
}

.coberturas-page .coverage-urgent-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.coberturas-page .coverage-urgent-points div {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1846;
    border: 1px solid rgba(0, 121, 200, 0.1);
}

.coberturas-page .coverage-feature {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: start;

    padding: 38px;
    border-radius: 24px;
}

.coberturas-page .coverage-feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.72);

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "bupaicons_ds";
    font-size: 54px;
    line-height: 1;

    color: #0079c8;

    border: 1px solid rgba(0, 121, 200, 0.12);
}

.coberturas-page .coverage-feature-kicker {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 700;

    color: #0079c8;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.coberturas-page .coverage-feature-content h3 {
    font-size: 32px;
    line-height: 1.15;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 14px;
}

.coberturas-page .coverage-feature-content p {
    font-size: 17px;
    line-height: 1.65;
    color: #40516a;
}

/* COVERS BLOCK CTA's  */

.covers-cta {
    text-align: center;
    margin-top: 34px;
}

/* COVERS BLOCK ICONS */

.icon-primaria::before {
    content: "\e9cc";
}
.icon-especialidades::before {
    content: "\eb16";
}
.icon-pruebas::before {
    content: "\e9ca";
}
.icon-metodos::before {
    content: "\ea25";
}
.icon-intervenciones::before {
    content: "\eb3a";
}
.icon-hospital::before {
    content: "\ea1a";
}
.icon-repatriacion::before {
    content: "\ea5a";
}
.icon-dental::before {
    content: "\e91f";
}
.icon-segundaop::before {
    content: "\e9de";
}
.icon-programas::before {
    content: "\e9db";
}
.icon-planes::before {
    content: "\e9db";
}
.icon-urgencias::before {
    content: "\e9db";
}
.icon-persona::before {
    content: "\ea9d";
}
.icon-contrata::before {
    content: "\e9c4";
}
.icon-poliza::before {
    content: "\e9e2";
}
.icon-gente::before {
    content: "\ea4f";
}
.icon-horario::before {
    content: "\e9cd";
}
.icon-difhorario::before {
    content: "\eaba";
}
.icon-medico::before {
    content: "\e9df";
}
.icon-seguromedico::before {
    content: "\ea43";
}
.icon-lider::before {
    content: "\ea80";
}
.icon-operadora::before {
    content: "\e9d6";
}
.icon-acreditaecon::before {
    content: "\e99e";
}
.icon-pasaporte::before {
    content: "\ea5d";
}
.icon-certmedico::before {
    content: "\ea25";
}
.icon-telefono::before {
    content: "\ea58";
}
.icon-mail::before {
    content: "\e9f2";
}
.icon-formulario::before {
    content: "\e9e6";
}

/* ==================================================
   PRICES BLOCK
================================================== */

.prices-block {
    padding: 70px 0;
    border-top: 1px solid #e6eaf0;
    background: #f8fbff;
}

.prices-steps {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.mini-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #0079c8;
    margin-bottom: 16px;
}

.prices-left h2 {
    font-size: 38px;
    line-height: 1.08;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 18px;
}

.prices-left p {
    font-size: 22px;
    line-height: 1.55;
    color: #4a5565;
    font-weight: 300;
}

.prices-right {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #005eb8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    color: #0079c8;
    font-size: 70px;
    line-height: 1;
    margin: 0 auto 18px;
}

.step-item h3 {
    font-size: 26px;
    line-height: 1.15;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 18px;
    line-height: 1.45;
    color: #5a6678;
    font-weight: 400;
}

.step-arrow {
    font-size: 42px;
    color: #0079c8;
    margin-top: 66px;
}

/* CTA PRECIOS */

.prices-cta-box {
    margin-top: 60px;
    padding-top: 55px;
    border-top: 1px solid #dfe7f0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
    align-items: center;
}

.prices-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-main-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 48px;
    color: #0079c8;
    flex-shrink: 0;
}

.price-main-icon img {
    width: 75px;
    height: auto;
    object-fit: contain;
}

.icon-precio::before {
    content: "\ea80";
}

.prices-cta-copy h3 {
    font-size: 30px;
    line-height: 1.08;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 16px;
}

.prices-cta-copy p {
    font-size: 22px;
    line-height: 1.55;
    color: #4a5565;
    font-weight: 300;
}

.prices-cta-right {
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prices-cta-right .btn {
    width: 100%;
}

.price-safe {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #4a5565;
}
/***********************************************
    PRICE POPUP
***********************************************/

.price-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.price-popup.active {
    display: flex;
}

.price-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 45, 0.62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.price-popup-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.price-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #0d1846;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.price-popup-close:hover {
    transform: scale(1.05);
}

.price-popup-content h3 {
    font-size: 32px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 18px;
}

.price-popup-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6678;
    font-weight: 300;
    margin-bottom: 18px;
}

.price-popup-content p:last-child {
    margin-bottom: 0;
}

/* Icono WhatsApp línea */
.btn-whatsapp-line::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../images/icons/whatsapp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

/* Icono carrito botón precio */
.btn-cart::before {
    content: "\ea8a";
    font-family: "bupaicons_ds";
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
}

/* ==================================================
   SUPPORT BLOCK
================================================== */

.support-block {
    padding: 70px 0;
    border-top: 1px solid #e6eaf0;
    background: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.support-whatsapp h3 {
    color: #16a34a;
}

/* Pulso interior tarjeta WhatsApp */
.support-whatsapp {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.support-whatsapp::before,
.support-whatsapp::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.7);
    z-index: 0;
    pointer-events: none;
    animation: wasaBeat 1.7s infinite;
}

.support-whatsapp::before {
    width: 140px;
    height: 140px;
}

.support-whatsapp::after {
    width: 220px;
    height: 220px;
    animation-delay: 1s;
}

.support-whatsapp > * {
    position: relative;
    z-index: 2;
}

@keyframes wasaBeat {
    0% {
        transform: translate(-50%, -50%) scale(0.75);
        opacity: 0.65;
    }

    45% {
        transform: translate(-50%, -50%) scale(1.55);
        opacity: 0.18;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.support-whatsapp.offline {
    background: #f3f4f6;
    border-color: #d9dde3;
}

.support-whatsapp.offline::before,
.support-whatsapp.offline::after {
    display: none;
}

.support-whatsapp.offline .office-status {
    background: #ffffff;
    color: #7a7a7a;
}

.support-whatsapp.offline .offline-note {
    display: block;
}

.offline-note {
    display: none;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

.support-time-box p {
    font-weight: 600;
}

/* LEFT */

.support-left {
    position: relative;
}

.support-left h2 {
    font-size: 38px;
    line-height: 1.08;
    color: #0d1846;
    font-weight: 700;
    margin: 10px 0 28px;
}

.support-list {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.support-list > div {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.support-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 45px;
    flex-shrink: 0;
}

.support-list strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    color: #0d1846;
    margin-bottom: 6px;
}

.support-list p {
    font-size: 19px;
    line-height: 1.5;
    color: #4a5565;
    font-weight: 300;
}

.support-agent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 360px;
}

.support-agent img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* RIGHT */

.support-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.support-card {
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 28px;
    background: #ffffff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.support-card h3 {
    font-size: 26px;
    line-height: 1.05;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 14px;
}

.support-card p {
    font-size: 18px;
    line-height: 1.55;
    color: #5a6678;
    font-weight: 300;
    margin: 14px 0 22px;
    flex-grow: 1;
}

.support-card .btn {
    width: 100%;
}

/* STATUS */

.msg-online {
    color: #22c55e !important;
    font-weight: 600;
}

.office-status {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
}

.office-status.online {
    background: #e9f9ef;
    color: #16a34a;
}

.office-status.offline {
    background: #f1f1f1;
    color: #999999;
}

/* Time box */

.support-time-box {
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 24px;
    background: #f8fbff;
}

.support-time-box > strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #0d1846;
    margin-bottom: 10px;
}

.support-time-box p strong {
    display: inline;
    font-size: inherit;
    font-weight: 600;
    color: #0d1846;
}

.support-time-box p {
    font-size: 17px;
    line-height: 1.55;
    color: #5a6678;
    font-weight: 300;
}

/* =========================
   FAQ HOME
========================= */

.faq-home-section {
    background: #f8fbff;
    padding: 70px 0;
    border-top: 1px solid #e6eaf0;
}

.faq-home-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 55px;
    align-items: start;
}

/* LEFT */

.faq-mini-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #0079c8;
    margin-bottom: 16px;
}

.faq-home-heading h2 {
    margin: 0 0 28px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
    color: #0d1846;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(13, 24, 70, 0.03);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 26px;
    text-align: left;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #16324f;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 34px;
    line-height: 1;
    color: #0079c8;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 760px;
    padding: 0 26px 24px;
}

.faq-answer p {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 300;
    color: #4a5565;
}

/* RIGHT */

.faq-side-box {
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(13, 24, 70, 0.04);
    position: sticky;
    top: 110px;
}

.faq-side-box h3 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    color: #0d1846;
}

.faq-side-box p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
    text-align: center;
    color: #5a6678;
}

.faq-side-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.faq-side-buttons-row .btn {
    width: 100%;
}

.faq-full-btn {
    width: 100%;
}

.faq-info-btn {
    width: 100%;
    position: relative;
    min-height: 52px;
}

.faq-info-btn small {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #16324f;
    font-weight: 600;
}

.faq-side-buttons-row {
    margin-bottom: 34px;
}

/***********************************************
    FAQ PAGE
***********************************************/

.faq-page-section {
    padding: 70px 0 90px;
    background: #f7f9fc;
}

/* HEAD */

.faq-page-head {
    margin-bottom: 38px;
}

.faq-page-head h2 {
    font-size: 52px;
    line-height: 1.05;
    color: #0d1846;
    font-weight: 700;
    margin-top: 10px;
}

/* LAYOUT */

.faq-page-layout {
    max-width: 1050px;
}

/***********************************************
    FAQ ITEMS
***********************************************/

.faq-page-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-page-left .faq-item {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-page-left .faq-item:hover {
    border-color: #b9d3ee;
    box-shadow: 0 8px 22px rgba(13, 24, 70, 0.04);
}

.faq-page-left .faq-question {
    width: 100%;
    padding: 30px 34px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    text-align: left;
}

.faq-page-left .faq-question span:first-child {
    font-size: 20px;
    line-height: 1.4;
    color: #0d1846;
    font-weight: 600;
}

.faq-page-left .faq-icon {
    font-size: 38px;
    line-height: 1;
    color: #0079c8;
    font-weight: 300;
    flex-shrink: 0;
}

/***********************************************
    FAQ ANSWER
***********************************************/

.faq-list {
    margin: 18px 0 0;
    padding-left: 22px;
}

.faq-list li {
    font-size: 17px;
    line-height: 1.85;
    color: #526071;
    margin-bottom: 10px;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

.faq-page-left .faq-answer {
    padding: 0 34px 34px;
    display: none;
}

.faq-page-left .faq-item.active {
    border-color: #b9d3ee;
    background: #fbfdff;
}

.faq-page-left .faq-item.active .faq-answer {
    display: block;
}

.faq-page-left .faq-answer p {
    font-size: 17px;
    line-height: 1.85;
    color: #526071;
    font-weight: 400;
    margin-bottom: 14px;
}

.faq-page-left .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-page-left .faq-answer a {
    color: #0079c8;
    text-decoration: none;
}

.faq-page-left .faq-answer a:hover {
    text-decoration: underline;
}

/***********************************************
    CONTACT BOX
***********************************************/

.faq-page-right {
    margin-top: 42px;
}

.faq-page-right .faq-side-box {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 28px;
    padding: 42px;
    text-align: center;
}

.faq-page-right .faq-side-box h3 {
    font-size: 44px;
    line-height: 1.05;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 18px;
}

.faq-page-right .faq-side-box p {
    font-size: 22px;
    line-height: 1.7;
    color: #6a7687;
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto 34px;
}

/* BUTTONS */

.faq-side-buttons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.faq-side-buttons-row .btn,
.faq-side-buttons-row .btn-secondary {
    width: 100%;
    justify-content: center;
}

.faq-full-btn {
    width: 100%;
    justify-content: center;
}

/* =====================================
   SANITAS POWER BLOCK
===================================== */

.sanitas-power-block {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid #e6eaf0;
}

.sanitas-power-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 42px;
}

.sanitas-power-head h2 {
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
    color: #0d1846;
    margin-bottom: 16px;
}

.sanitas-power-head h2 span {
    color: #0079c8;
}

.sanitas-power-head p {
    font-size: 22px;
    line-height: 1.55;
    font-weight: 300;
    color: #4a5565;
}

.sanitas-power-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 20px;
}

.sanitas-power-item {
    text-align: center;
    padding: 18px 12px;
}

.power-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 54px;
    line-height: 1;
    margin: 0 auto 18px;
}

.sanitas-power-item h3 {
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    color: #0d1846;
    margin-bottom: 12px;
}

.sanitas-power-item p {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
    color: #5a6678;
}

.sanitas-power-cta {
    text-align: center;
    margin-top: 40px;
}

/***********************************************
    PRICE CALCULATOR
***********************************************/

.price-calculator-block {
    padding: 70px 0;
    background: #f8fbff;
    border-top: 1px solid #e6eaf0;
}

.price-calculator-head {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.price-calculator-head h2 {
    font-size: 42px;
    line-height: 1.08;
    color: #0d1846;
    font-weight: 700;
    margin: 12px 0 16px;
}

.price-calculator-head p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: #5a6678;
    font-weight: 300;
}

.price-calculator-box {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 14px 34px rgba(13, 24, 70, 0.07);
}

.price-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    line-height: 1.35;
    color: #0d1846;
    font-weight: 700;
}

.birth-grid {
    display: grid;
    grid-template-columns: 0.75fr 0.75fr 1fr;
    gap: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #d8e2ec;
    border-radius: 12px;
    background: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    color: #16324f;
    transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0079c8;
    box-shadow: 0 0 0 3px rgba(0, 121, 200, 0.12);
}

.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, #0079c8 50%), linear-gradient(135deg, #0079c8 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
    cursor: pointer;
    appearance: none;
}

.price-calculator-actions {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.price-calculator-actions .btn {
    min-width: 240px;
    min-height: 50px;
    font-size: 16px;
    border-radius: 12px;
}

.course-dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/***********************************************
    RESULT BOX
***********************************************/

.price-result-box {
    max-width: 760px;
    margin: 28px auto 0;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 14px 34px rgba(13, 24, 70, 0.06);
}

.price-result-top {
    text-align: center;
    margin-bottom: 28px;
}

.price-result-top h3 {
    font-size: 34px;
    line-height: 1.08;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-result-top p {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6678;
    font-weight: 300;
}

.price-summary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.price-summary-item-large {
    grid-column: span 3;
}

.price-summary-item-small {
    grid-column: span 2;
}

.price-summary-item {
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    border-radius: 16px;
    padding: 20px;
}

.price-summary-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    color: #0079c8;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-summary-item span {
    display: block;
    font-size: 22px;
    line-height: 1.3;
    color: #0d1846;
    font-weight: 700;
}

.price-total-box {
    background: #0079c8;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    margin-bottom: 26px;
}

.price-total-box small {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-total-box strong {
    display: block;
    font-size: 52px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.price-total-box .price-warning-box {
    margin-bottom: 34px;
}

.annual-discount-note {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    text-align: center;
}

.price-legal-box {
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 24px;
}

.price-legal-box h4 {
    font-size: 22px;
    line-height: 1.2;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 14px;
}

.price-legal-box p {
    font-size: 16px;
    line-height: 1.75;
    color: #40516a;
    font-weight: 300;
    margin-bottom: 14px;
}

.price-legal-box p:last-child {
    margin-bottom: 0;
}

.price-warning-box {
    background: #fff8f3;
    border: 1px solid #ffd7bf;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.price-warning-box h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #db3907;
    font-weight: 700;
    margin-bottom: 14px;
}

.price-warning-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6678;
    font-weight: 300;
    margin-bottom: 20px;
}

.price-warning-box .btn {
    width: 100%;
}

/***********************************************
    PRICE LEGAL ACCORDION
***********************************************/

.price-legal-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    margin: 0;
}

.price-legal-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0d1846;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    flex-shrink: 0;
    transition: 0.25s ease;
}

.price-legal-box.active .price-legal-icon {
    transform: rotate(45deg);
}

.price-legal-content {
    display: none;
    padding-top: 20px;
}

.price-legal-box.active .price-legal-content {
    display: block;
}
.price-legal-content span {
    font-weight: 600;
}

/* =====================================
   RESIDENTES STRIP
===================================== */

.residentes-strip {
    padding: 0 0 70px;
    background: #ffffff;
}

.residentes-box {
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.residentes-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.residentes-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0079c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bupaicons_ds";
    font-size: 42px;
    flex-shrink: 0;
}

.residentes-copy h3 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #0d1846;
    margin-bottom: 6px;
}

.residentes-copy p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    color: #5a6678;
}

.residentes-right .btn {
    min-width: 250px;
}
.residentes-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* =====================================
   FOOTER
===================================== */

.site-footer {
    margin-top: 70px;
    background: #0d1846;
    color: #ffffff;
}

.footer-inner {
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo img {
    height: 42px;
    width: auto;
}

.footer-brand-text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 300;
    max-width: 280px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong,
.footer-social strong {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.site-footer a {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-footer a:hover {
    color: #9fd4ff;
}

/* REGISTRO */

.footer-registro {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.footer-registro .container {
    display: flex;
    justify-content: flex-start;
}

.footer-registro a {
    color: #f8d09e;
    font-size: 15px;
    font-weight: 400;
}

.footer-dgsfp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-dgsfp img {
    width: 250px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-dgsfp span {
    color: #f8d09e;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

/* BOTTOM */

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-legal a {
    color: #9fd4ff;
    font-size: 14px;
}

.footer-mini-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-mini-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: 0.2s ease;
}

.footer-mini-social a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.footer-mini-social img {
    max-width: 30px;
    max-height: 30px;
    width: auto;
    height: auto;
    display: block;
}

/* =====================================
   LEGAL PAGES
===================================== */

.legal-main {
    background: #ffffff;
}

.legal-hero {
    padding: 70px 0 42px;
    background: #f8fbff;
    border-bottom: 1px solid #e6eaf0;
}

.legal-hero h1 {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 700;
    color: #0d1846;
    margin-bottom: 16px;
}

.legal-hero p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 300;
    color: #5a6678;
}

.legal-content-section {
    padding: 60px 0 80px;
}

.legal-content {
    max-width: 1024px;
}

.legal-content h2 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: #0d1846;
    margin: 34px 0 14px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.75;
    font-weight: 300;
    color: #4a5565;
    margin-bottom: 16px;
}

.legal-content strong {
    font-weight: 700;
    color: #0d1846;
}

/* =====================================
   COOKIE PREFERENCES
===================================== */

.cookie-pref-box {
    margin-top: 28px;
    border: 1px solid #e3e9f1;
    border-radius: 18px;
    overflow: hidden;
}

.cookie-row {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #eef2f7;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row strong {
    display: block;
    font-size: 18px;
    color: #0d1846;
    margin-bottom: 6px;
}

.cookie-row p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #5a6678;
}

.cookie-state {
    font-size: 14px;
    font-weight: 700;
    color: #0f7a36;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 32px;
}

.cookie-switch input {
    display: none;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    background: #c7d3df;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.25s;
}

.cookie-switch span:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 50%;
    transition: 0.25s;
}

.cookie-switch input:checked + span {
    background: #0079c8;
}

.cookie-switch input:checked + span:before {
    transform: translateX(26px);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.cookie-note {
    margin-top: 18px;
    font-size: 15px;
    color: #5a6678;
}

/* =====================================
   COOKIE BANNER
===================================== */

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 70px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner.show::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(13, 24, 70, 0.55);
    z-index: -1;
}

.cookie-banner-box {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(13, 24, 70, 0.14);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #5a6678;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner-actions .btn {
    white-space: nowrap;
}

#cookieAccept {
    min-width: 160px;
}

.cookie-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #0d1846;
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-title img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

/* WhatsApp modal */

.wa-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 24, 70, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.wa-modal.active {
    display: flex;
}

.wa-modal-box {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.wa-modal-box h3 {
    font-size: 34px;
    line-height: 1.1;
    color: #0d1846;
    font-weight: 700;
    margin-bottom: 16px;
}

.wa-modal-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6678;
    margin-bottom: 26px;
}

.wa-modal-actions {
    display: flex;
    gap: 14px;
}

.wa-modal-actions .btn {
    flex: 1;
}
/****************************************
LEGAL TABLE
****************************************/

.legal-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 40px 0;
}

.legal-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.legal-table thead tr {
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.legal-table th {
    text-align: left;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--header-txt-col);
    font-size: 1rem;
    white-space: nowrap;
}

.legal-table td {
    padding: 16px 18px;
    vertical-align: top;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

/****************************************
LEGAL LISTS
****************************************/

.legal-content ul {
    margin: 20px 0 30px 20px;
    padding: 0;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/**** RESPONSIVE ****/

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 12px;
    }

    .desktop-nav a {
        font-size: 16px;
        padding: 26px 12px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 620px) 300px;
        gap: 28px;
    }

    .hero-card {
        top: -120px;
    }

    .contact-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-trust-item:nth-child(2)::after {
        display: none;
    }
    .cookie-banner-box {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 70px 0;
        background:
            linear-gradient(180deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.86) 58%, rgba(247, 245, 242, 0.68) 100%),
            url("../images/art/student-main.png") center right / cover no-repeat;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-card {
        top: 0;
        max-width: 420px;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .visa-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .visa-left h2 {
        font-size: 34px;
    }

    .visa-requirements-layout {
        grid-template-columns: 1fr;
    }

    .visa-coverage-card {
        position: relative;
        top: auto;
    }

    .visa-requirements-left h2 {
        font-size: 26px;
    }

    .visa-requirement-item h3 {
        font-size: 18px;
    }

    .visa-requirement-item p {
        font-size: 14px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .prices-steps,
    .prices-cta-box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .prices-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .prices-left h2,
    .prices-cta-copy h3 {
        font-size: 30px;
    }

    .prices-left p,
    .prices-cta-copy p {
        font-size: 18px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-left {
        padding-bottom: 0;
    }

    .support-agent {
        position: relative;
        width: 100%;
        max-width: 420px;
        margin-top: 28px;
    }

    .support-left h2 {
        font-size: 34px;
    }

    .faq-home-grid {
        grid-template-columns: 1fr;
    }

    .faq-side-box {
        position: relative;
        top: auto;
    }
    .sanitas-power-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 22px;
    }

    .sanitas-power-head h2 {
        font-size: 30px;
    }

    .sanitas-power-head p {
        font-size: 18px;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
    }

    .covers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coberturas-page .covers-grid-coberturas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
    }

    .brand img {
        height: 36px;
    }

    .header-mini-wa span {
        font-size: 0;
    }

    .header-actions {
        gap: 6px;
    }

    .header-mini {
        width: 54px;
    }

    .header-mini span {
        width: 54px;
        height: 38px;
        border-radius: 10px;
    }

    .header-mini-info span,
    .header-mini-buy span {
        font-size: 24px;
    }
    .header-mini small {
        font-size: 9px;
    }

    .btn-header-buy {
        height: 46px;
        padding: 0 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-header-buy .material-symbols-outlined {
        font-size: 18px;
    }

    .hero {
        padding: 36px 0 46px;
        background:
            linear-gradient(180deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.9) 48%, rgba(247, 245, 242, 0.78) 100%),
            url("../images/art/student-main.png") center top / cover no-repeat;
    }

    .hero-badge {
        font-size: 13px;
        padding: 9px 14px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.08;
        letter-spacing: -0.6px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .hero-action-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-action-item .btn {
        width: 100%;
    }

    .hero-action-item small {
        display: block;
        width: 100%;
        margin-top: 8px;
        text-align: center;
        font-size: 13px;
        line-height: 1.4;
        color: #16324f;
        font-weight: 500;
    }

    .hero-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-points li {
        white-space: normal;
        padding-right: 0;
        font-size: 15px;
    }

    .hero-points li:not(:last-child)::after {
        display: none;
    }

    .hero-card {
        max-width: none;
        padding: 24px 22px;
        border-radius: 20px;
    }

    .hero-card-head img {
        width: 58px;
        height: 58px;
    }

    .hero-card-head h3 {
        font-size: 22px;
    }

    .hero-card li {
        font-size: 16px;
    }

    .hero-contacto .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-panel {
        max-width: 100%;

        width: 100%;

        padding: 32px 26px;

        margin: 0;
    }

    .contact-panel h3 {
        font-size: 52px;

        line-height: 0.95;

        margin-bottom: 28px;
    }

    .contact-method {
        gap: 16px;
    }

    .contact-method-text strong {
        font-size: 18px;
    }

    .contact-method-text p {
        font-size: 15px;
    }

    .contact-human-proof {
        align-items: flex-start;
    }

    .contact-human-proof {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 18px;
    }

    .contact-human-text {
        padding-left: 0;
    }

    .contact-panel h3 {
        font-size: 34px;

        line-height: 1.02;
    }

    .contact-trust-strip {
        padding: 0 0 70px;
    }

    .contact-trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-trust-item {
        padding: 28px 24px;
    }

    .contact-trust-item::after {
        display: none;
    }

    .contact-trust-item strong {
        font-size: 20px;
    }

    .contact-trust-item p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-whatsapp {
        width: 100%;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .visa-block {
        padding: 50px 0;
    }

    .visa-left h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .visa-left p {
        font-size: 17px;
    }

    .visa-card {
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .visa-card-icon {
        font-size: 56px;
    }

    .visa-btn {
        width: 100%;
        justify-content: center;
    }

    .visa-requirements-block {
        padding: 55px 0;
    }

    .visa-requirements-left h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .visa-requirements-intro {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .visa-requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 18px;
    }

    .visa-requirement-icon {
        width: 76px;
        height: 76px;
        font-size: 48px;
    }

    .visa-requirement-item h3 {
        font-size: 20px;
    }

    .visa-requirement-item p {
        font-size: 15px;
    }

    .visa-coverage-card {
        padding: 28px 22px;
    }

    .visa-coverage-card h3 {
        font-size: 26px;
    }

    .visa-coverage-card p {
        font-size: 16px;
    }

    .visa-duration-info {
        padding: 0 0 55px;
    }

    .visa-duration-box {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .visa-duration-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
    }

    .visa-duration-head h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .visa-duration-content > p {
        font-size: 16px;
    }

    .visa-duration-item {
        padding: 18px;
    }

    .visa-duration-item p {
        font-size: 15px;
    }

    .visa-duration-note {
        padding: 20px;
        font-size: 15px;
    }

    .prices-block {
        padding: 55px 0;
    }

    .prices-right {
        flex-direction: column;
    }

    .step-item {
        width: 100%;
    }

    .prices-cta-left {
        flex-direction: column;
        text-align: center;
    }

    .prices-cta-copy h3 {
        font-size: 28px;
    }

    .prices-cta-right {
        padding: 22px;
    }
    .course-dates-grid {
        grid-template-columns: 1fr;
    }

    .price-result-box {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .price-result-top h3 {
        font-size: 28px;
    }

    .price-summary-grid {
        grid-template-columns: 1fr;
    }

    .price-summary-item span {
        font-size: 20px;
    }

    .price-total-box {
        padding: 24px 20px;
    }

    .price-total-box strong {
        font-size: 42px;
    }

    .price-warning-box h3 {
        font-size: 24px;
    }

    .price-popup-box {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .price-popup-content h3 {
        font-size: 26px;
    }

    .price-popup-content p {
        font-size: 16px;
    }

    .support-block {
        padding: 55px 0;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }

    .support-left h2 {
        font-size: 28px;
    }

    .support-card h3 {
        font-size: 28px;
    }

    .support-list p,
    .support-card p,
    .support-time-box p {
        font-size: 16px;
    }

    .price-calculator-block {
        padding: 55px 0;
    }

    .price-calculator-head {
        margin-bottom: 28px;
    }

    .price-calculator-head h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .price-calculator-head p {
        font-size: 17px;
    }

    .price-calculator-box {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .birth-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .price-calculator-actions .btn {
        width: 100%;
    }

    .wa-modal-box {
        padding: 26px;
    }

    .wa-modal-box h3 {
        font-size: 28px;
    }

    .wa-modal-actions {
        flex-direction: column;
    }

    .faq-home-section {
        padding: 70px 0;
    }

    .faq-home-heading h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px;
    }

    .faq-side-box {
        padding: 26px;
    }

    .faq-side-box h3 {
        font-size: 28px;
    }

    .faq-info-btn {
        padding: 14px 18px;
    }

    .faq-info-btn small {
        position: static;
        display: block;
        margin-top: 6px;
        color: rgba(255, 255, 255, 0.92);
    }
    .faq-home-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        overflow: visible;
    }

    .faq-home-left,
    .faq-home-right {
        width: 100%;
    }

    .faq-side-box {
        width: 100%;
        padding: 24px 20px;
    }

    .faq-side-buttons-row {
        grid-template-columns: 1fr;
    }

    .faq-side-buttons-row .btn,
    .faq-side-buttons-row .btn-secondary {
        width: 100%;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-question span:first-child {
        flex: 1;
    }
    .sanitas-power-block {
        padding: 55px 0;
    }

    .sanitas-power-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-page-section {
        padding: 55px 0 70px;
    }

    .faq-page-head {
        margin-bottom: 28px;
    }

    .faq-page-head h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .faq-page-left .faq-question {
        padding: 24px 22px;
    }

    .faq-page-left .faq-question span:first-child {
        font-size: 18px;
        line-height: 1.45;
    }

    .faq-page-left .faq-icon {
        font-size: 30px;
    }

    .faq-page-left .faq-answer {
        padding: 0 22px 26px;
    }

    .faq-page-left .faq-answer p {
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-page-right {
        margin-top: 34px;
    }

    .faq-page-right .faq-side-box {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .faq-page-right .faq-side-box h3 {
        font-size: 32px;
    }

    .faq-page-right .faq-side-box p {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .faq-side-buttons-row {
        grid-template-columns: 1fr;
    }

    .sanitas-power-head {
        margin-bottom: 28px;
    }

    .sanitas-power-head h2 {
        font-size: 28px;
    }

    .sanitas-power-item h3 {
        font-size: 24px;
    }

    .sanitas-power-item p {
        font-size: 16px;
    }
    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-copy {
        order: 1;
    }

    .footer-legal {
        order: 2;
        justify-content: center;
    }

    .footer-mini-social {
        order: 3;
        justify-content: center;
    }
    .footer-dgsfp {
        flex-direction: column;
        gap: 10px;
    }

    .footer-dgsfp img {
        width: 130px;
    }
    .legal-hero {
        padding: 55px 0 34px;
    }

    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-hero p {
        font-size: 17px;
    }

    .legal-content-section {
        padding: 42px 0 60px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .legal-content p {
        font-size: 16px;
    }
    .cookie-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
    .cookie-banner-box {
        padding: 20px;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .covers-grid {
        grid-template-columns: 1fr;
    }

    .coberturas-page .covers-grid-coberturas {
        grid-template-columns: 1fr;
    }

    .coberturas-page .coverage-detail-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .coberturas-page .coverage-detail-head h3 {
        font-size: 26px;
    }

    .coberturas-page .coverage-programs-grid {
        grid-template-columns: 1fr;
    }

    .coberturas-page .coverage-program {
        padding: 20px;
    }

    .coberturas-page .coverage-extra-programs {
        padding: 20px;
    }

    .coberturas-page .coverage-feature {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 22px;
    }

    .coberturas-page .coverage-feature-icon {
        width: 72px;
        height: 72px;
        font-size: 42px;
    }

    .coberturas-page .coverage-feature-content h3 {
        font-size: 26px;
    }

    .coberturas-page .coverage-urgent-points {
        grid-template-columns: 1fr;
    }

    .prices-cta-box,
    .faq-home-grid,
    .residentes-box {
        display: flex;
        flex-direction: column;
    }

    .prices-cta-right,
    .residentes-right {
        width: 100%;
    }

    .prices-cta-right .btn,
    .residentes-right .btn {
        width: 100%;
    }

    .step-arrow {
        display: none;
    }
    .legal-table {
        min-width: 700px;
    }

    .legal-table th,
    .legal-table td {
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .header-actions {
        gap: 8px;
    }

    .btn-header-buy {
        padding: 0 10px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-card-head {
        gap: 12px;
    }

    .visa-left h2 {
        font-size: 25px;
    }

    .visa-left p {
        font-size: 16px;
    }

    .visa-card {
        padding: 18px;
    }

    .visa-card-text strong {
        font-size: 20px;
    }

    .visa-card-text p {
        font-size: 15px;
    }

    .visa-card-icon {
        font-size: 48px;
    }

    .visa-btn {
        font-size: 15px;
        padding: 13px 16px;
    }
    .visa-requirements-left h2 {
        font-size: 26px;
    }

    .visa-requirement-item h3 {
        font-size: 18px;
    }

    .visa-requirement-item p {
        font-size: 14px;
    }

    .visa-duration-head h2 {
        font-size: 25px;
    }

    .faq-side-buttons-row {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .faq-icon {
        font-size: 28px;
    }

    .faq-home-heading h2 {
        font-size: 30px;
    }

    .faq-page-head h2 {
        font-size: 32px;
    }

    .faq-page-left .faq-question span:first-child {
        font-size: 17px;
    }
    .sanitas-power-head h2 {
        font-size: 25px;
    }

    .power-icon {
        width: 64px;
        height: 64px;
        font-size: 44px;
    }

    .price-calculator-head h2 {
        font-size: 28px;
    }

    .birth-grid {
        grid-template-columns: 1fr;
    }
    .footer-mini-social {
        gap: 12px;
    }

    .footer-mini-social a {
        width: 32px;
        height: 32px;
    }

    .footer-mini-social img {
        max-width: 22px;
        max-height: 22px;
    }

    .footer-legal {
        gap: 10px;
    }
    .legal-hero h1 {
        font-size: 30px;
    }
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-banner-box {
        padding: 16px;
        border-radius: 14px;
    }

    .cookie-banner-text strong {
        font-size: 16px;
    }

    .cookie-banner-text p {
        font-size: 14px;
    }
}
