@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

a {
    color: inherit !important;
    text-decoration: none !important;
}

*:focus {
    outline: none;
    /* box-shadow: 0 0 0.5vw #00fff7; */

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: white;


    font-family: 'DM Sans', sans-serif;

}

.header {
    transition: background 0.3s ease;
}

/* clase activa */
.header.scrolled {
    /*background: #253f79db;*/
    backdrop-filter: blur(10px);
    transition: all 2s;
}

.slider-rsv {
    position: absolute;
    right: 10%;
    top: 33%;
    z-index: 1;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slider-rsv img {
    width: 70%;
}

/* ── WRAPPER ── */
.slider-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: #017B7A;
}

/* ── TRACK ── */
.slider-track {
    display: flex;
    height: 100%;
    width: 300%;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* ── SLIDES ── */
.slide {
    width: calc(100% / 3);
    height: 100%;
    position: relative;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradiente para legibilidad del contenido */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00d2d00f;
}

.slide-1 {
    background-image: url('images/pmd_sl_i1.png');
}

.slide-2 {
    background-image: url('images/pmd_sl_i4.png');
}

.slide-3 {
    background-image: url('images/pmd_sl_i3.png');
}

.slide-4 {
    background-image: url('images/pmd_sl_i4.png');
}

/* ── CONTENIDO DEL SLIDE (aquí van tus CTAs) ── */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.2rem, 3vw, 3rem);
    gap: clamp(0.6rem, 1.5vw, 1.2rem);
}

.slide-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1vw;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    TEXT-SHADOW: 0vw 0vw 1vw #253f79;
}

.slide-title {
    font-weight: 700;
    color: #fff;
    TEXT-SHADOW: 0vw 0vw 1vw #253f79;
    line-height: 1.1;
    font-size: 3vw;
    max-width: 30vw;
}

/* ── BOTONES CTA ── */
.cta-group {
    display: flex;
    gap: clamp(0.5rem, 1.2vw, 1rem);
    flex-wrap: wrap;
    margin-top: clamp(0.2rem, 0.9vw, 0.6rem);
    display: none;
}

.btn-primary {
    padding: clamp(0.45rem, 1vw, 0.75rem) clamp(1rem, 2.5vw, 2rem);
    background: white;
    color: #133a64;

    font-size: 1.1vw;
    font-weight: 500;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    color: white;
    background: #133a64;
}

.btn-secondary {
    padding: clamp(0.45rem, 1vw, 0.75rem) clamp(1rem, 2.5vw, 2rem);
    background: transparent;
    color: #fff;

    font-size: 1.1vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
    border-color: #fff;
}

/* ── FLECHAS ── */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(2rem, 3.5vw, 3rem);
    height: clamp(2rem, 3.5vw, 3rem);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.08);
}

.arrow svg {
    width: 40%;
    height: 40%;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.arrow-prev {
    left: clamp(0.7rem, 2vw, 1.5rem);
}

.arrow-next {
    right: clamp(0.7rem, 2vw, 1.5rem);
}

/* ── DOTS ── */
.dots {
    position: absolute;
    bottom: clamp(0.8rem, 2vw, 1.4rem);
    right: clamp(0.8rem, 2vw, 1.4rem);
    z-index: 10;
    display: flex;
    gap: 6px;
    opacity: 0;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* ── PROGRESS LINE ── */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #00d2d0;
    z-index: 10;
    width: 0%;
    transition: width 0.1s linear;
}

.header {
    width: 100%;
    padding-bottom: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 11;
}

.logo_home {
    transition: all 0.3s;
    background-image: url(images/logo_promed.png);
    width: 17vw;
    height: 7vw;
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: center center;
}

.logo_home:hover {
    transition: all 0.3s;
    filter: brightness(120%);

}

.header_menu {
    color: white;
    background-color: #017B7A;
    padding: 0.7vw 2.5vw;
    border-radius: 6vw;
    font-weight: bold;
    font-size: 1vw;
}

.header_menu span {
    padding: 0vw 0.5vw;
}

.red_salud {
    background: white;
    /* padding: 0.5vw 1vw; */
    border-radius: 1vw;
    display: flex;
    align-items: center;
    color: #133a64;
    font-size: 0.7vw;
    margin-left: 3vw;
    height: 4.5vw;
    margin-top: 1vw;
    font-weight: bold;

}

.red_salud_1 {
    line-height: 0.9vw;
    background-color: #01B0BA;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1vw;
    font-size: 1vw;
    padding-right: 2vw;
    border-radius: 4vw 10vw 10vw 4vw;
    animation: rs1_pulso 2s ease-in-out infinite;
}

@keyframes rs1_pulso {

    0%,
    100% {
        background-color: #01B0BA;
    }

    50% {
        background-color: #18ced7;
    }
}

.red_salud_2 {
    cursor: pointer;
    height: 4.1vw;
    transition: all 0.3s;
    width: auto;
}

.red_salud_2:hover {
    transition: all 0.3s;
    filter: brightness(120%);

}

.header_sb2 {

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-end;
}

.hdr_fonos {
    background-color: white;
    color: #077775;
    margin-top: 0.9vw;
    padding: 0.5vw 1.5vw;
    display: flex;
    font-size: 0.85vw;
    border-radius: 0.7vw;
    font-weight: bold;
}

.btn_fono_a {
    margin-right: 1vw;
}

.btn_fono {
    transition: all 0.3s;
    background-repeat: no-repeat;
    background-image: url(images/ico_fono.png);
    background-size: auto 100%;
    padding-left: 1.5vw;
    line-height: 1.3vw;
}


.btn_fono:hover {
    transition: all 0.3s;
    filter: brightness(120%);

}


.btn_wwzz {
    transition: all 0.3s;
    background-repeat: no-repeat;
    background-image: url(images/ico_waze.png);
    background-size: auto 100%;
    padding-left: 1.5vw;
    line-height: 1.3vw;
}


.btn_wwzz:hover {
    transition: all 0.3s;
    filter: brightness(120%);

}

.header_menu span {
    transition: all 0.3s;
    opacity: 0.9;
    cursor: pointer;
}

.header_menu span:hover {
    transition: all 0.3s;
    opacity: 1;
}


.slider_btn_rsv {
    background-color: #07777500;
    display: flex;
    color: white;
    padding: 0;
    font-size: 1.1vw;
    font-weight: bold;
    margin-top: 0;
    border-radius: 1vw;
    width: 22vw;
    height: 8vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s;
    /* position: fixed; */
    /* right: 10vw;
    bottom: 18vw; */
    background-image: url(images/slider_btn_rsv.png);
    animation: pulso 2s ease-in-out infinite;
    box-shadow: 0vw 0.2vw 1.5vw 4px #133a6480;
}

.slider_btn_rsv_ft {
    display: flex;
    color: white;
    padding: 0;
    font-size: 1.1vw;
    font-weight: bold;
    margin-top: 0;
    border-radius: 1vw;
    width: 22vw;
    height: 4vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s;
    position: fixed;
    right: 7vw;
    bottom: 2vw;
    animation: pulso 2s ease-in-out infinite;
    background-image: url(images/slider_btn_rsv_ft.png);
    box-shadow: 0vw 0.2vw 1.5vw 4px #133a6480;
}

.slider_btn_rsv_ft_ko {
    display: flex;
    color: white;
    padding: 0;
    font-size: 1.1vw;
    font-weight: bold;
    margin-top: 0;
    border-radius: 1vw;
    width: 22vw;
    height: 4vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s;
    position: fixed;
    right: 7vw;
    bottom: -12vw;
    animation: pulso 2s ease-in-out infinite;
    background-image: url(images/slider_btn_rsv_ft.png);
    box-shadow: 0vw 0.2vw 1.5vw 4px #133a6480;
}

@keyframes pulso {

    0%,
    100% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.05);

    }
}


.slider_btn_rsv:hover,
.slider_btn_rsv_ft:hover {
    transition: all 0.3s;
    filter: brightness(120%);
}

.slider_ico_tn2 img {
    width: 2vw;
    margin-right: 0.9vw;
}

.slider_ico_tn2 {
    background-color: #077775;
    display: flex;
    color: white;
    padding: 1vw 2vw 1vw 1.8vw;
    background-position: 14%;
    font-size: 1.1vw;
    font-weight: bold;
    margin-top: 1vw;
    border-radius: 5vw;
    background-size: auto 53%;
    background-repeat: no-repeat;
    transition: all 0.3s;
    align-items: center;
}

.slider_ico_tn2:hover {
    transition: all 0.3s;
    filter: brightness(120%);
}

.srv_1 {
    width: 100%;
    background-color: #253f79;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;

}

.srv_2 {
    background-color: #017B7A;
    color: white;
    width: 30%;
    height: 52vw;
}



.srv_4 {
    font-size: 2vw;
    width: 83%;
    padding: 0% 0% 0% 14%;

    padding-top: 4vw;
    margin-bottom: 1.5vw;
}

.srv_5 {

    width: 95%;
    padding: 0% 0% 0% 14%;
}

.srv_6 {
    font-size: 1.3vw;
    padding: 0.1vw 0vw;
    cursor: pointer;
    transition: all 00s;
    line-height: 2vw;

}

.srv_6:hover {
    font-size: 1.5vw;
    /* background-color: rgba(3, 255, 238, 0.115); */
    transition: all 0.0s;
    font-weight: bold;
    letter-spacing: -0.005vw;
}

.srv_7 {}

.srv_8 {}

.srv_9 {}

.srv_0 {}












/* CONTENEDOR */
.faq {
    width: 100%;
    padding: 5vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #253f79;
}

/* TITULO */
.faq h2 {
    color: #fff;
    font-size: 2.2vw;
    margin-bottom: 3vw;
}

/* ITEM (LA NUBE) */
.faq-item {
    width: 70vw;
    margin-bottom: 1.5vw;
    border-radius: 3vw;
    border: 0.15vw solid rgba(255, 255, 255, 0.3);
    background: transparent;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* HOVER */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
}

/* ACTIVO */
.faq-item.active {
    background: #017B7A;
    border-color: #017B7A;
}

/* PREGUNTA */
.faq-question {
    padding: 1.5vw 2vw;
    color: #fff;
    font-size: 1.2vw;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICONO */
.faq-question::after {
    content: "+";
    font-size: 1.5vw;
    transition: 0.3s;
}

/* ICONO ACTIVO */
.faq-item.active .faq-question::after {
    content: "−";
}

#examenes .srv_4 {
    padding: 0% 0% 0% 5%;
    padding-top: 4vw;

}

#examenes .srv_5 {
    padding: 0% 0% 0% 5%;
    /* padding-top: 4vw; */

}

/* RESPUESTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}


/* TEXTO RESPUESTA */
.faq-answer p {
    padding: 0 2vw 1.8vw 2vw;
    margin: 0;
    color: #fff;
    font-size: 1.3vw;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(-1vw);
    transition: all 0.4s ease;
}

/* MOSTRAR RESPUESTA */
.faq-item.active .faq-answer {
    max-height: 10vw;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}








.wsp-btn {
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    width: 4vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 9999;
    background-image: url(images/wsp.png);
    background-size: cover;
    background-position: center center;
}

/* ICONO */
.wsp-btn svg {
    width: 2vw;
    height: 2vw;
    fill: #fff;
}

/* HOVER */
.wsp-btn:hover {
    transform: scale(1.15);
}














.footer-info {
    width: 100%;
    background: white;
    padding-top: 5vw;
    font-family: 'DM Sans', sans-serif;
}

/* TOP */
.fi-top {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* COLUMNAS */
.fi-col {
    width: 40%;
}

.fi-right {
    display: flex;
    justify-content: flex-end;
}

/* TITULOS */
.fi-title {
    font-size: 1.4vw;
    font-weight: 700;
    color: #253f79;
    margin-bottom: 0.5vw;
}

/* TEXTO */
.fi-text {
    font-size: 1vw;
    color: #253f79;
    opacity: 1;
    font-weight: bold;
}

/* TELEFONOS */
.fi-phones {
    display: flex;
    gap: 1vw;
    margin-top: 1vw;
}

.fi-phone {
    cursor: pointer;
    font-size: 1.3vw;
    color: #017B7A;
    font-weight: 600;
    position: relative;
    padding-left: 2.5vw;
}

.fi-phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2vw;
    height: 2vw;
    background: url(images/ico_fono.png) no-repeat center / contain;
}

/* ICONO UBICACION */
.fi-row {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.fi-icon {
    width: 3vw;
    height: 3vw;
}

/* NOTA */
.fi-note {
    width: 60vw;
    margin: 2vw auto;
    text-align: center;
    font-size: 1vw;
    color: #253f79;


    line-height: 1.4vw;
}

/* LOGOS */
.fi-logos {
    width: 70vw;
    margin: 2vw auto 4vw auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: white !important;
}

.fi-logos .red_salud_1 {
    font-weight: bold;
    display: flex;
    font-size: 1.3vw;
    width: 100%;
    line-height: 1.5vw;
    margin-bottom: 1vw;
    color: #253f79;
    text-align: center !important;
    margin-top: 5vw;
    background-color: white !important;
    justify-content: center;
}


.ft_direcciones {
    font-weight: bold;
    font-size: 1.1vw;
}

.fi-logos img {
    height: 6.8vw;
    object-fit: contain;
}

/* PARTE INFERIOR */
.fi-bottom {
    width: 100%;
    height: 14.2vw;
    background: #2f8e8c;


    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO PRINCIPAL */
.fi-logo-main {
    width: 22vw;
}

svg {
    display: block;
}

* {
    scroll-padding-top: 10vw;
}

.team-hero {
    background-color: #017B7A;
    width: 100%;
    height: 28vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 4vw;
    position: relative;
    overflow: hidden;
    background-image: url(images/equipo_medico.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    animation: heroReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroReveal {
    from {
        background-position: center 130%;
        opacity: 0.8;
    }

    to {
        background-position: center center;
        opacity: 1;
    }
}

.ko_team-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 40px);
}

.team-hero-label {
    font-size: 1.1vw;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #00d2d0;
    margin-bottom: 1vw;
    position: relative;
}

.team-hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 4.5vw;
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative;
    line-height: 1;
}

.team-hero-sub {
    margin-top: 1.2vw;
    font-size: 1.3vw;
    color: white;
    position: relative;
    /* text-transform: uppercase; */
}

/* Curva inferior del hero */
.wave-bottom {
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
}

/* ══════════════════════════════════════════
       CONTENIDO PRINCIPAL
    ══════════════════════════════════════════ */
.team-page {
    background: #f4f7fb;
    padding: 5vw 8vw 6vw;
}

/* ── Título de especialidad ── */
.specialty-block {
    margin-bottom: 4vw;
}

.specialty-header {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin-bottom: 2.5vw;
}

.specialty-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #017B7A44, transparent);
}

.specialty-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.6vw;
    color: #253f79;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.5vw 1.5vw;
    border-left: 3px solid #017B7A;
}

/* ── Grid de tarjetas ── */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13vw, 1fr));
    gap: 1.8vw;
}

/* ── Tarjeta individual ── */
.doctor-card {
    background: white;
    border-radius: 1.2vw;
    padding: 1.5vw 1.2vw 1.4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* box-shadow: 0 0.3vw 1.5vw rgba(19, 58, 100, 0.09); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.doctor-card:hover {
    transform: translateY(-0.4vw);
    box-shadow: 0 0.9vw 2.5vw rgba(19, 58, 100, 0.16);
}

/* Foto cuadrada */
.doctor-photo {
    width: 7vw;
    height: 7vw;
    border-radius: 0.9vw;
    border: 3px solid white;
    box-shadow: 0 0.2vw 1.2vw rgb(154 154 154 / 35%);
    background: linear-gradient(135deg, #c8d8ef 0%, #b0cfe0 100%);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1vw;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Ícono placeholder si no hay imagen */
.ko_doctor-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='30' r='16' fill='%23a0b8d4'/%3E%3Cellipse cx='40' cy='70' rx='28' ry='20' fill='%23a0b8d4'/%3E%3C/svg%3E");
    background-size: 55%;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Nombre */
.doctor-name {
    font-size: 1.1vw;
    font-weight: 700;
    color: #133a64;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 0.5vw;
}

/* Tags de convenio */
.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3vw;
    justify-content: center;
    margin-top: 0.4vw;
}

.tag {
    font-size: 0.8vw;
    /* font-weight: bold; */
    padding: 0.2vw 0.5vw;
    border-radius: 2vw;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.tag-fonasa {
    background: #e0f4f4;
    color: #017B7A;
}

.tag-dipreca {
    background: #e4eaf7;
    color: #253f79;
}

.tag-particular {
    background: #f0f0f0;
    color: #555;
}

.tag-consalud {
    background: #fff0e5;
    color: #c06000;
}

.tag-cruzblanca {
    background: #fde8e8;
    color: #b00;
}

/* ── Nota especial para Dental ── */
.dental-note {
    background-color: #00ffff56;
    border-left: 4px solid #017B7A;
    border-radius: 0.6vw;
    padding: 1vw 1.5vw;
    font-size: 1.1vw;
    color: #253f79;
    margin-bottom: 2vw;
    line-height: 1.6;
    font-weight: bold;

    animation: softPulse 2.5s infinite ease-in-out;
}

@keyframes softPulse {
    0% {
        background-color: #00ffff1f;

    }

    50% {
        background-color: #00ffff56;

    }

    100% {
        background-color: #00ffff1f;

    }
}

.dental-note strong {
    color: #017B7A;
}

.BtnReservarEM {
    transition: all 0.3s;
    margin-top: 1vw;
    transition: all 0.3s;
    background-color: #017B7A;
    color: white !important;
    font-size: 1.1vw;
    padding: 0.7vw 2vw;
    border-radius: 7vw;
}

.BtnReservarEM:hover {
    background-color: #00caca;
    text-shadow: 0vw 0vw 1vw #004b4a;
}

.ft_direcciones {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #253f79;
    font-size: 1vw;
    /* font-weight: bold; */
}

.curve-top svg {
    display: block;
}

.curve-top {
    line-height: 0;
}

.curve-top svg {
    display: block;
    margin-bottom: -1px;
}

.curve-top {
    background-color: #253f79;
    overflow: hidden;
}

/* ── SERVICES STACK ── */
.services-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    padding: 0 5vw 4.7vw;
    max-width: 85vw;
    margin: 0 auto;
}

/* ── SERVICE CARD ── */
.service-card {
    background: white;
    display: flex;
    border-radius: 1.4vw;
    overflow: hidden;
    box-shadow: 0 0.23vw 1.25vw rgba(0, 0, 0, 0.07);
    /* scroll-margin-top: 7.8vw; */
    transition: box-shadow 0.25s;
    flex-direction: row;
    flex-wrap: wrap;
}


.service-card:hover {
    box-shadow: 0 0.62vw 2.5vw rgba(1, 123, 122, 0.13);
}


/* Banner image */
.card-banner {
    width: 50%;
    height: 27vw;
    object-fit: cover;
    display: block;
}

/* Card header strip */
.card-head {
    background-color: #017B7A;
    padding: 1.25vw 1.875vw;
    display: flex;
    align-items: center;
    gap: 1.09vw;
    width: 50%;
    transition: all 0.33s;
}

.service-card:hover .card-head {
    transition: all 0.33s;
    background-color: #133a64;
    /* text-indent: 1vw; */
}

.card-head-icon {
    width: 3.44vw;
    height: 3.44vw;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.94vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.09vw;
    flex-shrink: 0;
}

.card-head-title {
    font-size: 2.2vw;
    /* font-weight: 700; */
    color: white;
    line-height: 1.2;
}

.card-head-sub {
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.16vw;
}

/* Card body */
.card-body {
    padding: 1.72vw 2.03vw 2.03vw;
}

/* Bono label */
.bono-label {
    display: inline-flex;
    align-items: center;
    gap: 0.39vw;
    font-size: 1.1vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #133a64;
    background: #eef3ff;
    border-radius: 0.39vw;
    padding: 0.31vw 0.78vw;
    margin-bottom: 0.94vw;
}

.bono-label::before {
    content: '✓';
    color: #017B7A;
}

/* Convenios */
.convenios-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.47vw;
    margin-bottom: 1.41vw;
}

.badge {
    font-size: 1.1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 1.56vw;
    padding: 0.31vw 0.86vw;
    background: #edf7f7;
    color: #017B7A;
    border: 0.08vw solid #b8e4e4;
}

.badge.particular {
    background: #f0f4ff;
    color: #133a64;
    border-color: #c5d0ef;
}

/* Items list */
.items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9vw;
}

.items-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.78vw;
    font-size: 1.1vw;
    color: #3a3a4a;
    line-height: 1.45;
}

.items-list li::before {
    content: '';
    width: 0.9vw;
    height: 0.9vw;
    border-radius: 50%;
    background: #017B7A;
    margin-top: 0.47vw;
    flex-shrink: 0;
}

/* Note box */
.card-note {
    margin-top: 1.09vw;
    background: #fffbf0;
    border-left: 0.23vw solid #f5a623;
    border-radius: 0 0.62vw 0.62vw 0;
    padding: 0.78vw 1.09vw;
    font-size: 1.1vw;
    color: #7a5500;
    line-height: 1.6;
}

/* Free eval */
.free-eval {
    display: inline-flex;
    align-items: center;
    gap: 0.9vw;
    background: #fff3f3;
    border: 0.08vw solid #f5c2c2;
    border-radius: 1.56vw;
    padding: 0.39vw 1.09vw;
    font-size: 1.1vw;
    font-weight: 600;
    color: #c0392b;
    margin-bottom: 1.09vw;
}

.free-eval::before {
    content: '★';
}

.servi_base {
    background: #f4f7fb;
    padding-top: 10vw;
}

.srv_99 {
    width: 55%;
    height: 52vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0vw 0vw 5vw #133a64;
}

.srv_3 {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: none;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    gap: 0;
    /* ← sin espacio entre imágenes */
    margin: 0;
    padding: 0;
}

.srv_img_it {
    width: 100%;
    height: 52vw;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    margin: 0;
    /* ← sin margen */
    padding: 0;
    border: none;
    /* ← sin borde */
}

/* ── Sección principal ── */
.cotiza-section {
    background: #ffffff;
    padding: 4.17vw 1.67vw 4.44vw;
}

.cotiza-inner {
    max-width: 59.72vw;
    margin: 0 auto;
}

/* Eyebrow */
.cotiza-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.42vw;
    font-size: 0.76vw;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #017B7A;
    margin-bottom: 0.97vw;
}

.cotiza-eyebrow i {
    font-size: 1.04vw;
}

/* Heading */
.cotiza-title {
    font-size: 2.22vw;
    font-weight: 700;
    color: #253f79;
    line-height: 1.2;
    margin-bottom: 0.69vw;
}

.cotiza-title span {
    color: #017B7A;
}

.cotiza-subtitle {
    font-size: 1.08vw;
    color: #253f79;
    line-height: 1.7;
    /* max-width: 41.67vw; */
    margin-bottom: 2.5vw;
}

/* ── Tarjetas de datos requeridos ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.15vw, 1fr));
    gap: 0.83vw;
    margin-bottom: 2.5vw;
}

.step-card {
    background: #f7faf9;
    border: 1px solid #d4ede6;
    border-radius: 0.83vw;
    padding: 1.11vw 1.25vw;
    display: flex;
    align-items: flex-start;
    gap: 0.83vw;
    transition: border-color .2s, transform .2s;
}

.step-card:hover {
    /* border-color: #017B7A97; */
    /* transform: translateY(-0.14vw); */
}

.step-icon-wrap {
    width: 2.64vw;
    height: 2.64vw;
    /* background: #e0f5ed; */
    border-radius: 0.63vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-wrap i {
    font-size: 1.39vw;
    color: #017B7A;
}

.step-text-label {
    font-size: 0.76vw;
    color: #8fa89f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 0.21vw;
}

.step-text-value {
    font-size: 0.97vw;
    font-weight: 600;
    color: #253f79;
}

/* ── Divisor ── */
.cotiza-divider {
    border: none;
    border-top: 1px solid #eaf2ef;
    margin: 0 0 2.22vw;
}

/* ── CTA ── */
.cta-block {
    display: flex;
    align-items: center;
    gap: 0.83vw;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.69vw;
    padding: 0.97vw 1.94vw;
    background: #017B7A;
    color: #ffffff;
    border: none;
    border-radius: 0.83vw;
    font-size: 1.04vw;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    animation: pulse-green 2.4s ease-in-out infinite;

    transition: all 0.3s;
}

.btn-cta i {
    font-size: 1.53vw;
}

.btn-cta:hover {
    background-color: #00caca;
    /* text-shadow: 0vw 0vw 1vw #004b4a; */
    animation: none;
    font-size: 1.2vw;
    transition: all 0.3s;
}

.btn-cta:active {
    transform: scale(0.97);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 105, .45);
    }

    50% {
        box-shadow: 0 0 0 0.69vw rgba(13, 148, 105, 0);
    }
}

/* Copiar correo */
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.56vw;
    padding: 0.90vw 1.39vw;
    background: transparent;
    border: 1px solid #c8ddd8;
    border-radius: 0.83vw;
    font-size: 0.94vw;
    font-weight: 600;
    color: #4a6b62;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}

.btn-copy i {
    font-size: 1.18vw;
}

.btn-copy:hover {
    background: #f0faf6;
    border-color: #017B7A;
    color: #017B7A;
}

/* Feedback copiado */
.copy-ok {
    display: inline-flex;
    align-items: center;
    gap: 0.35vw;
    font-size: 0.90vw;
    font-weight: 600;
    color: #017B7A;
    opacity: 0;
    transition: opacity .3s;
}

.copy-ok.visible {
    opacity: 1;
}

.copy-ok i {
    font-size: 1.11vw;
}

/* ── Aviso informativo ── */
.cotiza-notice {
    margin-top: 1.94vw;
    background: #f0faf6;
    border: 1px solid #b6e2d3;
    border-left: 0.28vw solid #017B7A;
    border-radius: 0.69vw;
    padding: 1.11vw 1.25vw;
    display: flex;
    gap: 0.83vw;
    align-items: flex-start;
}

.cotiza-notice i {
    font-size: 1.39vw;
    color: #017B7A;
    flex-shrink: 0;
    margin-top: 0.07vw;
}

.cotiza-notice p {
    font-size: 0.94vw;
    color: #2d5448;
    line-height: 1.65;
}

.cotiza-notice strong {
    font-weight: 700;
}

/* ── Correo pill ── */
.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.42vw;
    background: #e0f5ed;
    border: 1px solid #9dd8c3;
    border-radius: 999px;
    padding: 0.28vw 0.97vw;
    font-size: 1.2vw;
    /* font-weight: 600; */
    color: #0a7d59;
    margin-top: 0.97vw;
    user-select: all;
}

.email-pill i {
    font-size: 1.04vw;
}

.btn_cotizar {
    color: white !important;
}


.step-icon-wrap img {
    width: 3vw;
}


#home {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 1px;
    opacity: 0;
}


/* HERO */
.pmd_cnc_hero {
    position: relative;
    height: 55vw;
    max-height: 96vh;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 4.5vw;
}

.pmd_cnc_hero_bg {
    position: absolute;
    inset: -8vw;
    will-change: transform;
    background:
        linear-gradient(to bottom, rgba(13, 31, 60, 0.35) 0%, rgba(13, 31, 60, 0.72) 100%),
        url('images/cmpp.png') center/cover no-repeat;
    background-size: cover;
}

.pmd_cnc_hero_content {
    position: relative;
    z-index: 2;
    width: 80vw;
    margin: 0 auto;
    padding-bottom: 5vw;
    /* alinear con el wrap */
    left: 50%;
    transform: translateX(-50%);
}

.pmd_cnc_hero_label {
    font-size: 0.7vw;
    font-weight: 500;
    letter-spacing: 0.3vw;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.2vw;
}

.pmd_cnc_hero_h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.2vw, 4.2vw);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    max-width: 44vw;
}

.pmd_cnc_hero_h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

/* INTRO */
.pmd_cnc_intro {
    padding: 6vw 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6vw;
    align-items: start;
}

.pmd_cnc_col_label {
    font-size: 0.68vw;
    font-weight: 500;
    letter-spacing: 0.28vw;
    text-transform: uppercase;
    color: var(--teal);
    padding-top: 0.3vw;
}

.pmd_cnc_intro_body p {
    font-size: clamp(0.9rem, 1.05vw, 1.05vw);
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 1.2vw;
}

.pmd_cnc_intro_body p:last-child {
    margin-bottom: 0;
}

.pmd_cnc_intro_body strong {
    color: var(--dark);
    font-weight: 500;
}

/* LÍNEA DIVISORIA */
.pmd_cnc_line {
    height: 0.05vw;
    background: rgba(37, 63, 121, 0.1);
}

/* DESTACADO */
.pmd_cnc_highlight {
    padding: 4vw 0;
    display: flex;
    align-items: center;
    gap: 2.5vw;
}

.pmd_cnc_hl_bar {
    width: 0.22vw;
    align-self: stretch;
    min-height: 4vw;
    background: var(--cyan);
    border-radius: 0.2vw;
    flex-shrink: 0;
}

.pmd_cnc_hl_text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.7vw, 1.7vw);
    line-height: 1.6;
    color: var(--navy);
}

/* SECCIÓN GENÉRICA */
.pmd_cnc_section {
    padding: 5vw 0;
}

.pmd_cnc_sec_header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6vw;
    margin-bottom: 3vw;
}

.pmd_cnc_sec_title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.9vw, 1.9vw);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

/* ESPECIALIDADES */
.pmd_cnc_esp_grid {
    grid-column: 1 / -1;
    padding-left: calc(100% / 3 + 2vw);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}

.pmd_cnc_esp_item {
    padding: 1.5vw 1.6vw;
    border: 0.06vw solid rgba(37, 63, 121, 0.1);
    border-radius: 0.7vw;
    transition: all .25s;
}

.pmd_cnc_esp_item:hover {
    border-color: var(--teal);
    background: var(--off);
}

.pmd_cnc_esp_ico {
    font-size: 1.3vw;
    margin-bottom: 0.6vw;
    display: block;
}

.pmd_cnc_esp_name {
    font-size: clamp(0.75rem, 0.85vw, 0.85vw);
    font-weight: 500;
    color: var(--navy);
}

/* SERVICIOS */
.pmd_cnc_srv_list {
    grid-column: 1 / -1;
    padding-left: calc(100% / 3 + 2vw);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pmd_cnc_srv_item {
    padding: 1.6vw 0;
    border-bottom: 0.06vw solid rgba(37, 63, 121, 0.08);
    display: flex;
    align-items: center;
    gap: 0.9vw;
    transition: color .25s;
}

.pmd_cnc_srv_item:nth-child(-n+4) {
    border-top: 0.06vw solid rgba(37, 63, 121, 0.08);
}

.pmd_cnc_srv_dot {
    width: 0.42vw;
    height: 0.42vw;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

.pmd_cnc_srv_name {
    font-size: clamp(0.75rem, 0.85vw, 0.85vw);
    color: var(--muted);
}

.pmd_cnc_srv_name.pmd_cnc_special {
    color: var(--teal);
    font-weight: 500;
}

/* POR QUÉ */
.pmd_cnc_porque {
    padding: 5vw 0;
    background: var(--off);
}

.pmd_cnc_porque .pmd_cnc_wrap {}

.pmd_cnc_razones {
    padding-left: calc(100% / 3 + 2vw);
    display: flex;
    flex-direction: column;
}

.pmd_cnc_razon {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    padding: 2vw 0;
    border-bottom: 0.06vw solid rgba(37, 63, 121, 0.08);
}

.pmd_cnc_razon:first-child {
    border-top: 0.06vw solid rgba(37, 63, 121, 0.08);
}

.pmd_cnc_r_num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8vw;
    font-weight: 400;
    color: rgba(37, 63, 121, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 3vw;
}

.pmd_cnc_r_title {
    font-size: clamp(0.85rem, 0.98vw, 0.98vw);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.35vw;
}

.pmd_cnc_r_desc {
    font-size: clamp(0.75rem, 0.85vw, 0.85vw);
    color: var(--muted);
    line-height: 1.6;
}

/* CTA */
.pmd_cnc_cta {
    padding: 5vw 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6vw;
    align-items: center;
}

.pmd_cnc_cta_body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.7vw, 1.7vw);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 1.2vw;
}

.pmd_cnc_cta_body p {
    font-size: clamp(0.78rem, 0.88vw, 0.88vw);
    color: var(--muted);
    margin-bottom: 1.8vw;
    line-height: 1.7;
}

.pmd_cnc_btns {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
}

.pmd_cnc_btn_primary {
    background: var(--navy);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78vw;
    font-weight: 500;
    letter-spacing: 0.08vw;
    padding: 0.9vw 2.2vw;
    border-radius: 0.4vw;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .25s;
}

.pmd_cnc_btn_primary:hover {
    background: var(--teal);
}

.pmd_cnc_btn_secondary {
    background: transparent;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78vw;
    font-weight: 500;
    letter-spacing: 0.08vw;
    padding: 0.9vw 2.2vw;
    border-radius: 0.4vw;
    border: 0.06vw solid rgba(37, 63, 121, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
}

.pmd_cnc_btn_secondary:hover {
    border-color: var(--navy);
}

/* FOOTER */
.pmd_cnc_footer {
    background: var(--dark);
    padding: 2.5vw 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5vw;
    border-top: 0.05vw solid rgba(255, 255, 255, 0.06);
}

.pmd_cnc_f_brand {
    font-family: 'Playfair Display', serif;
    font-size: 1vw;
    color: white;
    font-weight: 400;
}

.pmd_cnc_f_brand small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62vw;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2vw;
    text-transform: uppercase;
    margin-top: 0.2vw;
}

.pmd_cnc_f_info {
    font-size: 0.72vw;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    text-align: right;
}

.pmd_cnc_f_info a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
}

/* REVEAL */
.pmd_cnc_reveal {
    opacity: 0;
    transform: translateY(1.5vw);
    transition: opacity .6s ease, transform .6s ease;
}

.pmd_cnc_reveal.pmd_cnc_vis {
    opacity: 1;
    transform: translateY(0);
}


/* conocenos */

/* MAIN */
main {
    padding: 0 10vw;
}

/* MISIÓN */
.ccnn_block-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
    padding: 4vw 0 1vw 0;
    border-bottom: 1px solid rgba(26, 122, 110, .08);
}

/* SLIDER */

.ccnn_main {
    padding: 0 10vw;
    color: #133a64;
}

.ccnn_mission-visual {
    position: relative;
    height: 32vw;
    border-radius: 1.2vw;
    overflow: hidden;
    background: var(--teal-dark);
    box-shadow: 0 2vw 5vw rgba(14, 80, 73, .2);
}

.ccnn_slider-track {
    display: flex;
    height: 100%;
    transition: transform .75s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.ccnn_slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ccnn_slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.ccnn_slide.ccnn_active img {
    transform: scale(1.06);
}

.ccnn_slide:not(.ccnn_active) img {
    transform: scale(1);
}

.ccnn_slide-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8vw;
}

.ccnn_slide-ph-icon {
    font-size: 6vw;
    filter: drop-shadow(0 .5vw 2vw rgba(0, 0, 0, .3));
}

.ccnn_slide-ph-label {
    font-size: .65vw;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
}

.ccnn_slide-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(14, 80, 73, .65) 0%, transparent 55%); */
    z-index: 1;
}

.ccnn_slide-caption {
    position: absolute;
    bottom: 1.4vw;
    right: 5.5vw;
    z-index: 2;
    font-size: .65vw;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    letter-spacing: .09em;
}

/* Botones slider */
.ccnn_slider-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    width: 2.6vw;
    height: 2.6vw;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: .95vw;
    transition: background .2s, transform .2s;
    outline: none;
}

.ccnn_slider-btn:hover {
    background: rgba(255, 255, 255, .26);
    transform: translateY(-50%) scale(1.08);
}

.ccnn_slider-prev {
    left: 1.2vw;
}

.ccnn_slider-next {
    right: 1.2vw;
}

/* Dots */
.ccnn_slider-dots {
    position: absolute;
    bottom: 1.6vw;
    right: 1.8vw;
    z-index: 10;
    display: flex;
    gap: .5vw;
    align-items: center;
}

.ccnn_dot {
    width: .38vw;
    height: .38vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, .32);
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
    outline: none;
    padding: 0;
}

.ccnn_dot.ccnn_active {
    background: #fff;
    transform: scale(1.45);
}

/* Badge */
.ccnn_mission-badge {
    position: absolute;
    bottom: 1.6vw;
    left: 1.6vw;
    z-index: 10;
    background: #00caca;
    border-radius: .8vw;
    padding: 1vw 1.4vw;
    box-shadow: 0 .8vw 2.5vw rgba(0, 0, 0, .18);
    text-align: center;
}

.ccnn_badge-n {

    font-size: 2.8vw;
    color: var(--teal);
    line-height: 1;
}

.ccnn_badge-t {
    font-size: 1vw;
    color: var(--muted);
    letter-spacing: .06em;
    margin-top: .2vw;
}

/* Texto misión */
.ccnn_mission-text .ccnn_eyebrow {
    font-size: .62vw;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1vw;
    font-weight: 500;
}

.ccnn_mission-text h2 {

    font-size: 2.1vw;
    line-height: 1.12;
    letter-spacing: -.01em;
}

.ccnn_mission-text h2 em {
    font-style: italic;
    color: #017b7a;
}

.ccnn_mission-text p {
    margin-top: 1.8vw;
    font-size: 1.15vw;
    color: var(--muted);
    line-height: 1.8vw;
}

.ccnn_mission-text p+p {
    margin-top: 1vw;
}

.ccnn_highlight-bar {
    margin-top: 2.2vw;
    padding: 1.2vw 1.6vw;
    border-left: .22vw solid var(--teal);
    border-radius: 1vw;
    font-size: 1.2vw;
    color: var(--teal-dark);
    font-weight: bold;
    line-height: 1.5;
    animation: ccnn_pulse-bg 2s ease-in-out infinite;
}

@keyframes ccnn_pulse-bg {
    0% {
        background-color: #00ffff18;
    }

    50% {
        background-color: #00ffff50;
    }

    100% {
        background-color: #00ffff18;
    }
}

/* VALORES */
.ccnn_block-valores {
    padding: 4vw 0;
    border-bottom: 1px solid rgba(26, 122, 110, .08);
}

.ccnn_block-valores .ccnn_eyebrow {
    font-size: 1vw;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    margin-bottom: 1vw;
}

.ccnn_block-valores h2 {

    font-size: clamp(1.6rem, 2.6vw, 3.2rem);
    letter-spacing: -.01em;
    margin-bottom: 3.5vw;
}

.ccnn_block-valores h2 em {
    font-style: italic;
    color: white;
}

.ccnn_valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.ccnn_valor-card {
    padding: 2.5vw 2vw;
    border: 1px solid rgba(26, 122, 110, .09);
    border-radius: 1vw;
    background: var(--off);
    transition: transform .3s, box-shadow .3s;
}

.ccnn_valor-card:hover {
    transform: translateY(-.4vw);
    box-shadow: 0 1.5vw 4vw rgba(26, 122, 110, .1);
    background: #fff;
}

.ccnn_valor-num {

    font-size: 3.5vw;
    color: rgb(1 123 122);
    line-height: 1;
    letter-spacing: -.05em;
}

.ccnn_valor-title {

    font-size: 1.4vw;
    color: var(--text);
    margin-top: .4vw;
    line-height: 1.2;
    font-weight: bold;
    color: #017b7a
}

.ccnn_valor-body {
    margin-top: .8vw;
    font-size: 1vw;
    color: var(--muted);
    line-height: 1.7;
    font-weight: bold;
    color: #133a64;
}

.ccnn_valor-rule {
    margin-top: 1.8vw;
    height: 1.5px;
    width: 2.5vw;
    background: linear-gradient(to right, var(--teal), transparent);
}

/* ENDOSCOPIA */
.ccnn_block-endoscopia {
    padding: 5vw 0;
    border-bottom: 1px solid rgba(26, 122, 110, .08);
    display: flex;
    align-items: center;
    gap: 4vw;
}

.ccnn_endo-icon {
    flex-shrink: 0;
    width: 7vw;
    height: 7vw;
    background: var(--teal);
    border-radius: 1vw;
    display: grid;
    place-items: center;
    font-size: 3vw;
    box-shadow: 0 1vw 3vw rgba(26, 122, 110, .25);
}

.ccnn_endo-text h3 {

    font-size: clamp(1.4rem, 2vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -.01em;
}

.ccnn_endo-text p {
    margin-top: .8vw;
    font-size: .88vw;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 50vw;
}

.ccnn_endo-badge {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--teal-pale);
    border: 1px solid rgba(26, 122, 110, .2);
    border-radius: .8vw;
    padding: 1.2vw 2vw;
    text-align: center;
}

.ccnn_endo-badge-title {
    font-size: .58vw;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
}

.ccnn_endo-badge-label {

    font-size: 1.4vw;
    color: var(--teal-dark);
    margin-top: .3vw;
}

/* FOOTER */
footer {
    padding: 3vw 10vw;
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ccnn_footer-brand {

    font-size: 1.4vw;
    color: #fff;
}

.ccnn_footer-addr {
    font-size: .68vw;
    color: rgba(255, 255, 255, .3);
}

/* REVEAL */
.ccnn_reveal {
    opacity: 0;
    transform: translateY(2.5vw);
    transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
    color: white;
}

.ccnn_reveal.ccnn_in {
    opacity: 1;
    transform: translateY(0);
}

.ccnn_d1 {
    transition-delay: .1s;
}

.ccnn_d2 {
    transition-delay: .2s;
}

.ccnn_d3 {
    transition-delay: .3s;
}

.ccnn_d4 {
    transition-delay: .4s;
}

@keyframes up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ccnn_pfbfjfspfksww {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 4vw;
    background-color: #234177;
    display: flex;
    background-image: url(images/pqp.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: all 2s;
    /* animation: ccnn_pan-bg 90s infinite alternate; */
}

.ccnn_pfbfjfspfksww:hover {
    background-size: 130%;
    background-position: center 60%;

}

.ccnn_pqpcb {
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.ccnn_pqpcb:hover {
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s;
}

.ccnn_ededede {
    color: #133a64;
}

.ccnn_tttt {
    color: #133a64;
}

#ccnn_sliderDots {
    opacity: 0;
}

.ccnn_fin {
    width: 80%;
    margin: 5% 10%;
    /* display: flex; */

    color: #133a64;
    font-size: 1.5vw;
    /* justify-content: center; */
    text-align: center;
    font-style: italic;
    letter-spacing: -0.05vw;
    display: inline-block;
    animation: ccnn_color 4s ease-in-out infinite;
}

.ccnn_fin span {
    color: #017b7a;
    font-size: 1.8vw;
    font-weight: bold;
}



@keyframes ccnn_color {

    0%,
    100% {

        color: #017b7a;
        transform: scale(1.1);
    }

    50% {
        color: #133a64;
        transform: scale(1);
    }
}

.ft_direcciones div {
    margin: 1vw;
    cursor: pointer;
    transition: all 0.3s;
}

.ft_direcciones div:hover {
    transition: all 0.3s;
    filter: brightness(120%);
}

.scroll-top-btn {
    position: fixed;
    bottom: 2vw;
    left: 2vw;
    width: 2.9vw;
    height: 2.9vw;
    border-radius: 50%;
    background: white;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.3vw 1.2vw rgba(1, 123, 122, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 9999;
}

.scroll-top-btn img {
    width: 100%;
}

.scroll-top-btn.visible {
    transition: all 0.3s;
    opacity: 0.9;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    transition: all 0.3s;
    opacity: 1;
    background: white;
    /* bottom: 2.2vw; */
    transform: scale(1.2);
}

.scroll-top-btn svg {
    width: 45%;
    height: 45%;
    stroke: white;
    fill: none;
    stroke-width: 2.5vw;
    stroke-linecap: round;
    stroke-linejoin: round;
}



@media (max-width: 800px) {

    .srv_img_it {
        width: 100%;
        height: 88vw;
        object-fit: cover;
        flex-shrink: 0;
        display: block;
        margin: 0;
        /* ← sin margen */
        padding: 0;
        border: none;
        /* ← sin borde */
    }

    .slider_ico_tn2 img {
        width: 4vw;
        margin-right: 0.9vw;
    }




    .slider_ico_tn2 {
        background-color: #077775;
        display: flex;
        color: white;
        padding: 3vw 2.5vw 2.5vw 3vw;
        background-position: 14%;
        font-size: 3.1vw;
        font-weight: bold;
        margin-top: 1vw;
        border-radius: 5vw;
        background-size: auto 53%;
        background-repeat: no-repeat;
        transition: all 0.3s;
        align-items: center;
        letter-spacing: 0.15vw;
    }

    .slider_ico_tn2:hover {
        transition: all 0.3s;
        filter: brightness(120%);
    }




    .btn_fono {
        transition: all 0.3s;
        background-repeat: no-repeat;
        background-image: url(images/ico_fono.png);
        background-size: auto 100%;
        padding-left: 4.5vw;
        line-height: 3.3vw;
    }

    .btn_wwzz {
        transition: all 0.3s;
        background-repeat: no-repeat;
        background-image: url(images/ico_waze.png);
        background-size: auto 100%;
        padding-left: 4.5vw;
        line-height: 3.3vw;

    }


    .btn_wwzz:hover {
        transition: all 0.3s;
        filter: brightness(120%);

    }

    .hdr_fonos {
        background-color: white;
        color: #077775;
        margin-top: 0.9vw;
        padding: 2.5vw 2.5vw;
        display: flex;
        font-size: 2.5vw;
        border-radius: 23.7vw;
        font-weight: bold;
    }

    .red_salud {
        background: white;
        /* padding: 0.5vw 1vw; */
        border-radius: 2vw;
        display: flex;
        align-items: center;
        color: #133a64;
        font-size: 0.7vw;
        margin-left: 0vw;
        height: 11.5vw;
        margin-top: 0vw;
        font-weight: bold;
        overflow: hidden;
    }

    .red_salud_1 {
        line-height: 2.9vw;
        background-color: #01B0BA;
        color: white;
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 1vw;
        font-size: 2.5vw;
        padding-right: 2vw;
        border-radius: 2vw 10vw 10vw 2vw;
        animation: rs1_pulso 2s ease-in-out infinite;
        width: 19vw;
    }

    .red_salud_2 {
        cursor: pointer;
        height: 8.5vw;
        transition: all 0.3s;
        width: auto;
    }


    .slide-1 {
        background-image: url('images/pmd_sl_i1_m.png');
    }

    .slide-2 {
        background-image: url('images/pmd_sl_i2_m.png');
    }

    .slide-3 {
        background-image: url('images/pmd_sl_i3_m.png');
    }

    .slide-4 {
        background-image: url('images/pmd_sl_i3_m.png');
    }



    * {
        scroll-padding-top: 22vw;
    }


    .header {
        padding: 0vw;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1vw 2vw;
        background: rgb(255 255 255);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 8px rgba(1, 123, 122, 0.10);
        display: flex;
        flex-wrap: wrap;
        height: 24vw;
        position: absolute;
        left: 0;
        top: 0;

    }

    .logo_home {
        width: 33vw;
        height: 17vw;
        background-size: auto 85%;

    }

    .header_menu {
        font-size: 2.9vw;
        padding: 2vw 4vw;
        border-radius: 8vw;
        width: 60vw !important;
    }

    .header_menu span {
        padding: 0 1.5vw;
    }


    .header_sb2 {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: flex-end;
        margin-top: 0vw;
    }


    .slider-wrapper {
        height: 100vh;
        min-height: unset;
    }

    .slide-title {
        font-size: 7vw;
        max-width: 80vw;
    }

    .slide-label {
        font-size: 3vw;
    }

    .slide-content {
        padding: 5vw;
    }

    .slider-rsv {
        right: 4%;
        top: 55%;
        width: 70%;
    }



    /* Botón reservar flotante */
    .slider_btn_rsv_ft,
    .slider_btn_rsv_ft_ko {
        width: 58vw;
        height: 13vw;
        right: 50%;
        transform: translateX(50%);
        border-radius: 3vw;
    }

    .slider_btn_rsv_ft_ko {
        bottom: -30vw;
    }

    .slider_btn_rsv_ft {
        width: 59vw;
        height: 11vw;
        right: 20vw;
        transform: translateX(50%);
        border-radius: 3vw;
        bottom: 5vw;
    }

    .slider_btn_rsv {
        width: 62vw;
        height: 22vw;
        border-radius: 3vw;
    }




    .team-hero {
        background-color: #017B7A;
        width: 100%;
        height: 115vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 8vw;
        position: relative;
        overflow: hidden;
        background-image: url(images/equipo_medico.png);
        background-size: auto 150%;
        background-repeat: no-repeat;
        background-position: center bottom;
        animation: heroReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    @keyframes heroReveal {
        from {
            background-position: center 130%;
            opacity: 0.8;
        }

        to {
            background-position: center center;
            opacity: 1;
        }
    }


    .team-hero-label {
        font-size: 3vw;
        letter-spacing: 0.15em;
        margin-bottom: 2vw;
    }

    .team-hero-title {
        font-size: 10vw;
    }

    .team-hero-sub {
        font-size: 3.5vw;
        margin-top: 2vw;
        text-align: center;
        padding: 0 6vw;
    }

    /* ══════════════════════════════
       TEAM PAGE (contenedor páginas internas)
    ══════════════════════════════ */
    .team-page {
        padding: 6vw 5vw 8vw;
    }

    /* ══════════════════════════════
       MÉDICOS — specialty + doctor cards
    ══════════════════════════════ */
    .specialty-header {
        gap: 3vw;
        margin-bottom: 5vw;
    }

    .specialty-title {
        font-size: 4.5vw;
        padding: 1vw 3vw;
        white-space: normal;
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .doctor-card {
        border-radius: 4vw;
        padding: 4vw 3vw;
    }

    .doctor-photo {
        width: 22vw;
        height: 22vw;
        border-radius: 3vw;
        margin-bottom: 3vw;
    }

    .doctor-name {
        font-size: 3.5vw;
        margin-bottom: 1.5vw;
    }

    .tag {
        font-size: 2.5vw;
        padding: 0.8vw 2vw;
        border-radius: 5vw;
    }

    .BtnReservarEM {
        font-size: 3vw;
        padding: 2vw 4vw;
        border-radius: 8vw;
        margin-top: 2vw;
    }

    .dental-note {
        font-size: 3.5vw;
        padding: 3vw 4vw;
        border-radius: 2vw;
        margin-bottom: 5vw;
        line-height: 1.6;
    }

    /* ══════════════════════════════
       SERVICIOS — service cards
    ══════════════════════════════ */
    .servi_base {
        padding-top: 22vw;
    }

    .services-stack {
        padding: 0 4vw 8vw;
        max-width: 100%;
        gap: 6vw;
    }

    .service-card {
        flex-direction: column;
        border-radius: 4vw;
    }

    .card-banner {
        width: 100%;
        height: 52vw;
    }

    .card-head {
        width: 100%;
        padding: 4vw 5vw;
        gap: 3vw;
    }

    .card-head-icon {
        width: 10vw;
        height: 10vw;
        border-radius: 2.5vw;
        font-size: 6vw;
    }

    .card-head-title {
        font-size: 6vw;
    }

    .card-head-sub {
        font-size: 3.5vw;
        margin-top: 0.5vw;
    }

    .card-body {
        padding: 5vw;
    }

    .bono-label {
        font-size: 3.2vw;
        padding: 1vw 2.5vw;
        border-radius: 1.5vw;
        margin-bottom: 3vw;
    }

    .badge {
        font-size: 3.2vw;
        padding: 1.2vw 3vw;
        border-radius: 6vw;
    }

    .convenios-row {
        gap: 1.5vw;
        margin-bottom: 4vw;
    }

    .items-list {
        gap: 3vw;
    }

    .items-list li {
        font-size: 3.5vw;
        gap: 3vw;
    }

    .items-list li::before {
        width: 2.5vw;
        height: 2.5vw;
        margin-top: 1vw;
    }

    .card-note {
        font-size: 3.2vw;
        padding: 3vw 4vw;
        margin-top: 3vw;
    }

    .free-eval {
        font-size: 3.2vw;
        padding: 1.5vw 3.5vw;
        border-radius: 6vw;
        margin-bottom: 3vw;
    }

    /* Menú lateral servicios */
    .srv_1 {
        flex-direction: column;
    }

    .srv_2 {
        width: 100%;
        height: auto;
        padding-bottom: 4vw;
    }

    .srv_99 {
        width: 100%;
        height: 88vw;
    }

    .srv_4 {
        font-size: 5.5vw;
        width: 70%;
        padding: 5vw 5vw 0 5vw;
        margin-bottom: 3vw;
        margin-left: 15%;
    }

    .srv_5 {
        width: 70%;
        padding: 0 5vw;
        margin-left: 15%;
    }

    .srv_6 {
        font-size: 4vw;
        line-height: 7vw;
        padding: 1vw 0;
    }

    .srv_6:hover {
        font-size: 4.5vw;
    }

    #examenes .srv_4,
    #examenes .srv_5 {
        padding-left: 5vw;
    }


    .faq {
        padding: 8vw 0;
    }

    .faq h2 {
        font-size: 6vw;
        margin-bottom: 6vw;
        text-align: center;
        padding: 0 5vw;
        margin-top: 16vw;
    }

    .faq-item {
        width: 90vw;
        border-radius: 6vw;
        margin-bottom: 3.5vw;
    }

    .faq-question {
        padding: 4.5vw 5vw;
        font-size: 3.8vw;
    }

    .faq-question::after {
        font-size: 5vw;
    }

    .faq-answer p {
        font-size: 3.5vw;
        padding: 0 5vw 5vw;
    }

    .faq-item.active .faq-answer {
        max-height: 40vw;
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer-info {
        padding-top: 10vw;
    }

    .fi-top {
        width: 90vw;
        flex-direction: column;
        gap: 6vw;
    }

    .fi-col {
        width: 100%;
    }

    .fi-right {
        justify-content: flex-start;
    }

    .fi-title {
        font-size: 4.5vw;
        margin-bottom: 1.5vw;
    }

    .fi-text {
        font-size: 3.5vw;
        line-height: 1.6;
    }

    .fi-phones {
        flex-direction: column;
        gap: 3vw;
        margin-top: 3vw;
    }

    .fi-phone {
        font-size: 4.5vw;
        padding-left: 8vw;
    }

    .fi-phone::before {
        width: 6vw;
        height: 6vw;
    }

    .fi-row {
        gap: 3vw;
    }

    .fi-icon {
        width: 9vw;
        height: 9vw;
    }

    .fi-note {
        width: 88vw;
        font-size: 3.2vw;
        margin: 5vw auto;
        line-height: 1.6;
    }

    .fi-logos {
        width: 88vw;
        margin: 4vw auto 8vw;
    }

    .fi-logos .red_salud_1 {
        font-size: 4.5vw;
        line-height: 1.4;
        margin-bottom: 4vw;
        margin-top: 6vw;
    }

    .ft_direcciones {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 3vw;
        gap: 2vw;
    }

    .ft_direcciones div {
        margin: 2vw;
    }

    .fi-logos img {
        height: 27vw;
    }

    .fi-bottom {
        height: 70vw;
    }

    .fi-logo-main {
        width: 55vw;
    }

    .curve-top svg {
        height: 23vw;
        width: 100%;
    }


    .wsp-btn {
        bottom: 4vw;
        right: 4vw;
        width: 14vw;
        height: 14vw;
    }

    .scroll-top-btn {
        bottom: 4vw;
        left: 4vw;
        width: 10vw;
        height: 10vw;
    }


    .ccnn_main {
        padding: 0 5vw;
    }

    .ccnn_block-mission {
        grid-template-columns: 1fr;
        gap: 6vw;
        padding: 6vw 0 4vw 0;
    }

    .ccnn_mission-visual {
        height: 60vw;
        border-radius: 4vw;
        order: 1;
    }

    .ccnn_mission-text {
        order: 2;
    }

    .ccnn_mission-text h2 {
        font-size: 6vw;
        line-height: 1.2;
    }

    .ccnn_mission-text p {
        font-size: 3.8vw;
        line-height: 1.7;
        margin-top: 4vw;
    }

    .ccnn_mission-badge {
        bottom: 3vw;
        left: 3vw;
        border-radius: 3vw;
        padding: 3vw 4vw;
    }

    .ccnn_badge-n {
        font-size: 8vw;
    }

    .ccnn_badge-t {
        font-size: 3vw;
        margin-top: 0.5vw;
    }

    .ccnn_slider-btn {
        width: 8vw;
        height: 8vw;
        font-size: 3.5vw;
    }

    .ccnn_slider-prev {
        left: 2vw;
    }

    .ccnn_slider-next {
        right: 2vw;
    }

    .ccnn_dot {
        width: 1.8vw;
        height: 1.8vw;
    }

    .ccnn_highlight-bar {
        margin-top: 5vw;
        padding: 4vw 5vw;
        border-left-width: 1vw;
        border-radius: 3vw;
        font-size: 3.8vw;
        line-height: 1.6;
    }

    /* Valores grid */
    .ccnn_pfbfjfspfksww {
        padding-left: 5%;
        padding-right: 5%;
        margin-top: 6vw;
        background-position: center top;
        background-size: auto 105%;
        /* height: 215vw; */
        padding-top: 51vw;

     
         animation: highlight 1s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;

    }
@keyframes highlight {
  from { 

     background-position: center bottom;
        background-size: auto 101%;

 }
  to { 

     background-position: center bottom;
        background-size: auto 133%;
 }
}

    .xccnn_pfbfjfspfksww:hover {
        background-position: center bottom;
        background-size: auto 133%;

    }

    .ccnn_block-valores {
        padding: 8vw 0;
    }

    .ccnn_block-valores .ccnn_eyebrow {
        font-size: 3.5vw;
        letter-spacing: 0.1em;
        margin-bottom: 3vw;
    }

    .ccnn_block-valores h2 {
        font-size: 7vw;
        margin-bottom: 6vw;
    }

    .ccnn_valores-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .ccnn_valor-card {
        padding: 6vw 5vw;
        border-radius: 4vw;
    }

    .ccnn_valor-num {
        font-size: 10vw;
    }

    .ccnn_valor-title {
        font-size: 4.5vw;
        margin-top: 1.5vw;
    }

    .ccnn_valor-body {
        font-size: 3.5vw;
        margin-top: 2.5vw;
        line-height: 1.6;
    }

    .ccnn_valor-rule {
        margin-top: 4vw;
        width: 8vw;
    }

    .ccnn_fin {
        width: 90%;
        margin: 8% 5%;
        font-size: 4.5vw;
        letter-spacing: -0.1vw;
    }

    .ccnn_fin span {
        font-size: 5.5vw;
    }

    /* Reveal animation mobile */
    .ccnn_reveal {
        transform: translateY(6vw);
    }

    /* ══════════════════════════════
       COTIZAR
    ══════════════════════════════ */
    .cotiza-section {
        padding: 8vw 5vw;
    }

    .cotiza-inner {
        max-width: 100%;
    }

    .cotiza-title {
        font-size: 7vw;
        line-height: 1.2;
        margin-bottom: 3vw;
    }

    .cotiza-subtitle {
        font-size: 3.8vw;
        line-height: 1.7;
        margin-bottom: 6vw;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        margin-bottom: 6vw;
    }

    .step-card {
        border-radius: 3vw;
        padding: 4vw;
        gap: 3vw;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon-wrap {
        width: 10vw;
        height: 10vw;
        border-radius: 2vw;
    }

    .step-icon-wrap img {
        width: 8vw;
    }

    .step-icon-wrap i {
        font-size: 5vw;
    }

    .step-text-value {
        font-size: 3.5vw;
    }

    .email-pill {
        font-size: 3.5vw;
        padding: 2vw 4vw;
        margin-top: 4vw;
        flex-wrap: wrap;
        word-break: break-all;
    }

    .email-pill i {
        font-size: 4vw;
    }

    .cta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 3vw;
    }

    .btn-cta {
        font-size: 4vw;
        padding: 4vw 6vw;
        border-radius: 3vw;
        width: 100%;
        justify-content: center;
    }

    .btn-cta i {
        font-size: 5vw;
    }

    .btn-copy {
        font-size: 3.8vw;
        padding: 3.5vw 5vw;
        border-radius: 3vw;
        width: 100%;
        justify-content: center;
    }

    .btn-copy i {
        font-size: 4.5vw;
    }

    .copy-ok {
        font-size: 3.5vw;
    }

    .cotiza-notice {
        padding: 4vw;
        border-radius: 3vw;
        gap: 3vw;
        margin-top: 6vw;
    }

    .cotiza-notice i {
        font-size: 5vw;
    }

    .cotiza-notice p {
        font-size: 3.2vw;
        line-height: 1.65;
    }

}

/* end @media 768px */