:root {
    --navy: #061a3a;
    --navy-deep: #030b1b;
    --blue: #0756b3;
    --blue-bright: #1683ff;
    --blue-soft: #dcecff;
    --white: #ffffff;
    --off-white: #f3f7fc;
    --text: #0b2142;
    --muted: #60708a;
    --line: rgba(7, 86, 179, 0.16);
    --radius: 24px;
    --max: 1400px;
    --shadow: 0 24px 70px rgba(2, 15, 40, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(95%, var(--max));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s ease;
}

.site-header.scrolled {
    top: 0;
}

.nav-shell {
    width: min(95%, var(--max));
    min-height: 82px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(3, 11, 27, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.site-header.scrolled .nav-shell {
    width: 100%;
    border-radius: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 25px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    box-shadow: 0 0 0 4px rgba(22, 131, 255, 0.16);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy small {
    color: #a8c9f2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.32em;
}

.brand-copy strong {
    margin-top: 7px;
    color: var(--white);
    font-size: 21px;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.86;
}

.main-nav a:hover {
    color: #77baff;
    opacity: 1;
}

.nav-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.nav-action {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.button:hover,
.nav-action:hover {
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    border: 0;
    border-radius: 14px;
    padding: 11px 14px;
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
}

section {
    padding: 94px 0;
    scroll-margin-top: 110px;
}

.dark-section {
    color: var(--white);
    background:
        radial-gradient(circle at 12% 12%, rgba(22, 131, 255, 0.32), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(7, 86, 179, 0.40), transparent 30%),
        linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.light-section {
    background: var(--off-white);
}

.hero {
    min-height: 95vh;
    min-height: 95dvh;
    display: flex;
    align-items: center;
    padding-top: 142px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
    align-items: center;
}

.eyebrow,
.section-heading > span,
.contact-label {
    display: inline-flex;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
    max-width: 850px;
    margin: 24px 0 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(58px, 8.6vw, 122px);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero h1 strong {
    display: block;
    color: #45a1ff;
    text-shadow: 0 15px 45px rgba(22, 131, 255, 0.34);
}

.hero-lead {
    max-width: 740px;
    margin: 28px 0 0;
    color: var(--white);
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 800;
}

.hero-text {
    max-width: 680px;
    margin: 17px 0 0;
    color: #b9cce5;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button-primary {
    color: var(--white);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    box-shadow: 0 15px 34px rgba(22, 131, 255, 0.25);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.button-blue {
    color: var(--white);
    background: var(--blue);
}

.hero-panel {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
    box-shadow: var(--shadow);
}

.panel-label {
    color: #8ec4ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-panel h2 {
    margin: 18px 0 0;
    font-size: clamp(33px, 4vw, 58px);
    line-height: 1;
}

.hero-panel p {
    color: #bdd0e8;
    font-size: 17px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.metrics div {
    padding: 20px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
}

.metrics strong {
    display: block;
    color: #62b0ff;
    font-size: 24px;
}

.metrics span {
    display: block;
    margin-top: 6px;
    color: #c0d0e4;
    font-size: 11px;
}

.section-heading {
    max-width: 900px;
    margin-bottom: 46px;
}

.section-heading > span,
.contact-label {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.section-heading h2,
.contact-section h2 {
    margin: 18px 0 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
}

.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.dark-section .section-heading p {
    color: #b8cae1;
}

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

.card {
    min-height: 230px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(7, 42, 92, 0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(7, 42, 92, 0.15);
}

.card b {
    display: block;
    color: var(--navy);
    font-size: 23px;
    text-transform: uppercase;
}

.card p {
    color: var(--muted);
}

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

.project-card {
    min-height: 290px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.project-card > span {
    color: #59aaff;
    font-size: 40px;
    font-weight: 900;
}

.project-card h3 {
    font-size: 27px;
}

.project-card p {
    color: #bdd0e7;
}

.split-section,
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.feature-panel,
.contact-card {
    padding: 38px;
    border-radius: var(--radius);
}

.feature-panel {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(7, 42, 92, 0.10);
}

.feature-panel p {
    margin-top: 0;
    color: var(--muted);
    font-size: 19px;
}

.contact-section {
    padding: 110px 0;
    color: var(--white);
    background: linear-gradient(135deg, #0756b3, #061a3a);
}

.contact-section p {
    max-width: 650px;
    color: #d0e1f5;
    font-size: 18px;
}

.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
}

.contact-card strong {
    display: block;
    font-size: 28px;
}

.site-footer {
    padding: 30px 0;
    color: #a9bdd6;
    background: var(--navy-deep);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 980px) {
    .menu-button {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 2.5%;
        right: 2.5%;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        color: var(--navy);
        padding: 10px;
    }

    .nav-action {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 74px;
    }

    .hero-grid,
    .split-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .nav-shell {
        min-height: 70px;
        padding: 8px 14px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 16px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(50px, 17vw, 76px);
    }

    .hero-panel {
        padding: 24px;
    }

    .metrics,
    .cards,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    section {
        padding: 68px 0;
    }
}

.authority-note {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

/* MENÚ FLOTANTE FIJO Y ESTABLE */
.site-header,
.site-header.scrolled {
    top: 18px;
}

.nav-shell,
.site-header.scrolled .nav-shell {
    width: min(95%, var(--max));
    border-radius: 999px;
}

/* ILUMINACIÓN DEL MENÚ */
.main-nav a {
    position: relative;
    padding: 12px 2px;
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        opacity 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1683ff, #8ac7ff);
    box-shadow:
        0 0 8px rgba(22, 131, 255, 0.8),
        0 0 18px rgba(22, 131, 255, 0.45);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8ac7ff;
    opacity: 1;
    text-shadow: 0 0 14px rgba(22, 131, 255, 0.7);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* WHATSAPP PREMIUM EN MENÚ */
.whatsapp-number {
    border: 0;
    cursor: pointer;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #128c46, #25d366);
    box-shadow:
        0 0 16px rgba(37, 211, 102, .55),
        0 0 34px rgba(37, 211, 102, .25);
}

.whatsapp-number svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.whatsapp-number:hover {
    box-shadow:
        0 0 22px rgba(37, 211, 102, .85),
        0 0 48px rgba(37, 211, 102, .45);
}

/* MODAL QR */
.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(1, 8, 22, .78);
    backdrop-filter: blur(14px);
}

.whatsapp-modal.open {
    display: grid;
}

.whatsapp-modal-card {
    position: relative;
    width: min(92vw, 470px);
    padding: 38px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 0, rgba(37, 211, 102, .25), transparent 42%),
        linear-gradient(145deg, #061a3a, #030b1b);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .5),
        0 0 50px rgba(37, 211, 102, .18);
}

.whatsapp-modal-card h2 {
    margin: 18px 0 24px;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.12;
}

.whatsapp-modal-card > strong {
    display: block;
    margin-top: 20px;
    color: #72ee9f;
    font-size: 22px;
}

.whatsapp-modal-card > p {
    margin: 5px 0 0;
    color: #bcd0e8;
}

.whatsapp-modal-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(37, 211, 102, .55);
}

.whatsapp-qr {
    width: min(100%, 310px);
    margin: 0 auto;
    padding: 15px;
    border-radius: 22px;
    background: #fff;
}

.whatsapp-qr img {
    display: block;
    width: 100%;
    height: auto;
}

.whatsapp-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    font-size: 28px;
    cursor: pointer;
}

/* WHATSAPP FLOTANTE SOLO EN MÓVIL */
.whatsapp-mobile-float {
    display: none;
}

@media (max-width: 980px) {
    .whatsapp-mobile-float {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 1500;
        width: 62px;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        background: linear-gradient(135deg, #128c46, #25d366);
        box-shadow:
            0 10px 30px rgba(0, 0, 0, .35),
            0 0 24px rgba(37, 211, 102, .55);
    }

    .whatsapp-mobile-float svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }

    .whatsapp-mobile-float:active {
        transform: scale(.94);
    }
}

/* MENÚ MÓVIL COMPACTO PREMIUM */
@media (max-width: 980px) {
    .menu-button {
        min-width: 54px;
        padding: 10px 14px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        box-shadow: inset 0 0 18px rgba(22,131,255,.10);
        letter-spacing: .08em;
    }

    .main-nav {
        top: 82px;
        left: auto;
        right: 2.5%;
        width: min(92vw, 390px);
        padding: 10px;
        gap: 5px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 22px;
        background:
            linear-gradient(145deg, rgba(6,26,58,.97), rgba(3,11,27,.98));
        backdrop-filter: blur(22px);
        box-shadow:
            0 24px 65px rgba(0,0,0,.46),
            0 0 32px rgba(22,131,255,.14);
    }

    .main-nav a {
        position: relative;
        padding: 13px 16px;
        border-radius: 14px;
        color: #dcecff;
        font-size: 12px;
        text-align: left;
        letter-spacing: .09em;
        background: transparent;
        transition:
            background .22s ease,
            color .22s ease,
            transform .22s ease,
            box-shadow .22s ease;
    }

    .main-nav a::after {
        left: 16px;
        bottom: 8px;
        width: 0;
        height: 2px;
        transform: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: #ffffff;
        background: linear-gradient(
            90deg,
            rgba(22,131,255,.22),
            rgba(22,131,255,.05)
        );
        box-shadow: inset 3px 0 0 #45a1ff;
        transform: translateX(2px);
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        width: 34px;
    }
}

@media (max-width: 640px) {
    .main-nav {
        top: 76px;
        left: 12px;
        right: 12px;
        width: auto;
    }
}

.campaign-button {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    min-width: 310px;
}

.campaign-button small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: .85;
}

/* LEGIBILIDAD +50 AÑOS */

/* MARKETING DEL LOGO */
.brand-copy small {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .22em;
}

/* NÚMERO DE WHATSAPP */
.whatsapp-number span {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .035em;
    line-height: 1;
}

.whatsapp-number svg {
    width: 25px;
    height: 25px;
}

.whatsapp-modal-card > strong {
    font-size: 26px;
}

/* BOTÓN CAMPAÑAS */
.campaign-button {
    min-width: 360px;
    padding: 17px 28px;
}

.campaign-button span {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .055em;
}

.campaign-button small {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .09em;
    opacity: 1;
}

@media (max-width: 640px) {
    .brand-copy small {
        font-size: 11px;
    }

    .campaign-button {
        min-width: 0;
        width: 100%;
    }

    .campaign-button span {
        font-size: 15px;
    }

    .campaign-button small {
        font-size: 12px;
    }
}

/* HERO AMPLIO Y CENTRADO — INICIO */

/* El menú no se modifica */
.hero .container,
.hero-container,
.hero-inner,
.hero-shell {
    width: min(96%, 1560px);
    max-width: none;
    margin-inline: auto;
}

/* Composición y textos centrados */
.hero,
.hero-content,
.hero-copy,
.hero-text,
.hero-panel,
.hero-card {
    text-align: center;
}

.hero-grid {
    width: 100%;
    justify-items: center;
    align-items: center;
}

.hero-copy,
.hero-content,
.hero-text {
    margin-inline: auto;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero small,
.hero span {
    text-align: center;
}

/* Botones, etiquetas y estadísticas centrados */
.hero-actions,
.hero-buttons,
.hero-tags,
.hero-badges,
.hero-stats {
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .hero .container,
    .hero-container,
    .hero-inner,
    .hero-shell {
        width: min(94%, 1560px);
    }

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

/* HERO AMPLIO Y CENTRADO — FIN */

/* SECCIÓN 2 PRIMERO EN PUBLICIDAD — INICIO */

.pep2-section {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 9vw, 138px) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(58, 163, 255, .24), transparent 34%),
        radial-gradient(circle at 88% 78%, rgba(34, 112, 231, .20), transparent 32%),
        linear-gradient(135deg, #edf6ff 0%, #dbeeff 50%, #c6e3ff 100%);
}

.pep2-section::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255, 255, 255, .42) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .42) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.pep2-shell {
    position: relative;
    z-index: 1;
    width: min(96%, 1560px);
    margin-inline: auto;
    text-align: center;
}

.pep2-copy {
    width: min(100%, 980px);
    margin-inline: auto;
}

.pep2-kicker {
    margin: 0 0 18px;
    color: #087fd5;
    font-size: clamp(15px, 1.25vw, 19px);
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.pep2-copy h2 {
    margin: 0;
    color: #162d4b;
    font-size: clamp(48px, 6.2vw, 96px);
    font-weight: 300;
    letter-spacing: -.055em;
    line-height: .98;
    text-wrap: balance;
}

.pep2-lead {
    width: min(100%, 850px);
    margin: 28px auto 0;
    color: #455f7d;
    font-size: clamp(19px, 1.75vw, 27px);
    font-weight: 500;
    line-height: 1.55;
    text-wrap: balance;
}

.pep2-visual {
    position: relative;
    display: grid;
    width: min(100%, 1120px);
    min-height: 320px;
    margin: clamp(48px, 6vw, 82px) auto 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .34));
    box-shadow:
        0 36px 90px rgba(27, 91, 154, .20),
        inset 0 1px 0 rgba(255, 255, 255, .90);
    backdrop-filter: blur(14px);
}

.pep2-visual::before {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(20, 126, 211, .13);
    border-radius: 23px;
    content: "";
    pointer-events: none;
}

.pep2-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(94%, 1040px);
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(10, 56, 107, .22));
}

.pep2-visual.is-missing::after {
    position: relative;
    z-index: 1;
    content: "Imagen pendiente: primero-responsive.png";
    color: #365778;
    font-size: 18px;
    font-weight: 800;
}

.pep2-services {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    justify-content: center;
    width: min(100%, 1180px);
    margin: 48px auto 0;
    color: #183a61;
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 850;
    line-height: 1.4;
}

.pep2-services span {
    position: relative;
    padding-inline: 16px;
}

.pep2-services span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #168ddd;
    content: "";
    transform: translateY(-50%);
}

@media (max-width: 720px) {
    .pep2-section {
        padding: 72px 0;
    }

    .pep2-shell {
        width: 94%;
    }

    .pep2-copy h2 {
        font-size: clamp(43px, 13vw, 66px);
    }

    .pep2-lead {
        font-size: 18px;
    }

    .pep2-visual {
        min-height: 230px;
        margin-top: 42px;
        border-radius: 24px;
    }

    .pep2-visual::before {
        inset: 12px;
        border-radius: 16px;
    }

    .pep2-services {
        gap: 13px 18px;
        margin-top: 38px;
        font-size: 16px;
    }

    .pep2-services span {
        padding-inline: 6px;
    }

    .pep2-services span:not(:last-child)::after {
        display: none;
    }
}

/* SECCIÓN 2 PRIMERO EN PUBLICIDAD — FIN */

/* AJUSTE LOGO E IMAGEN RESPONSIVA — INICIO */

/* Logo visible y legible */
.brand {
    flex-shrink: 0;
}

.site-brand-logo {
    display: block;
    width: clamp(190px, 15vw, 255px);
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

/* Se conserva el fondo de la sección */
.pep2-visual {
    width: min(100%, 900px);
    min-height: 0;
    margin-top: clamp(38px, 5vw, 62px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.pep2-visual::before {
    display: none;
}

.pep2-visual img {
    width: min(82%, 760px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(10, 56, 107, .20));
}

@media (max-width: 900px) {
    .site-brand-logo {
        width: 185px;
        height: 58px;
    }

    .pep2-visual img {
        width: min(92%, 680px);
    }
}

@media (max-width: 640px) {
    .site-brand-logo {
        width: 155px;
        height: 52px;
    }

    .pep2-visual {
        margin-top: 34px;
    }

    .pep2-visual img {
        width: 100%;
        max-height: 360px;
    }
}

/* AJUSTE LOGO E IMAGEN RESPONSIVA — FIN */

/* H1 MARKETING DIGITAL SEO — INICIO */

.hero-title-main {
    display: block;
    font-size: .90em;
    white-space: nowrap;
}

.hero h1 > strong {
    display: block;
}

@media (max-width: 760px) {
    .hero-title-main {
        font-size: .82em;
        white-space: normal;
    }
}

/* H1 MARKETING DIGITAL SEO — FIN */

/* TÍTULO HERO TRES LÍNEAS — INICIO */

.hero h1 {
    margin-bottom: 0;
}

.hero-title-line {
    display: block;
    color: #f7f4ec;
    font-size: .88em;
    line-height: .88;
    white-space: nowrap;
}

.hero-signature {
    display: flex;
    flex-wrap: wrap;
    gap: .20em;
    align-items: center;
    justify-content: center;
    margin: 24px auto 32px;
    font-family: inherit;
    font-size: clamp(34px, 4.2vw, 68px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.hero-signature-arena {
    color: #e8dcc4;
    -webkit-text-stroke: 1px rgba(74, 91, 116, .55);
    text-shadow:
        0 2px 0 rgba(10, 31, 62, .32),
        0 10px 28px rgba(0, 0, 0, .16);
}

.hero-signature-blue {
    color: #49a4ff;
    text-shadow:
        0 2px 0 rgba(233, 218, 188, .20),
        0 0 24px rgba(73, 164, 255, .20);
}

@media (max-width: 760px) {
    .hero-title-line {
        font-size: .82em;
        white-space: normal;
    }

    .hero-signature {
        gap: .18em;
        margin-top: 20px;
        font-size: clamp(30px, 10vw, 48px);
    }

    .hero-signature-arena {
        -webkit-text-stroke: .7px rgba(74, 91, 116, .55);
    }
}

/* TÍTULO HERO TRES LÍNEAS — FIN */

/* CAPACITACIÓN PREMIUM SECCIÓN 2 — INICIO */

/* Imagen más compacta */
.pep2-visual {
    width: min(100%, 820px);
    margin-top: clamp(34px, 4vw, 54px);
}

.pep2-visual img {
    width: min(72%, 640px);
    max-height: 420px;
}

/* Bloque de capacitación */
.pep2-training {
    width: min(94%, 1040px);
    margin: clamp(42px, 5vw, 68px) auto 0;
    padding: clamp(34px, 4.5vw, 58px);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .74),
            rgba(224, 240, 255, .46)
        );
    box-shadow:
        0 26px 70px rgba(21, 77, 135, .15),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    text-align: center;
    backdrop-filter: blur(12px);
}

.pep2-training-kicker {
    margin: 0 0 24px;
    color: #31506f;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.pep2-training-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}

.pep2-training-badge {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: clamp(16px, 1.25vw, 19px);
    font-weight: 900;
    line-height: 1.25;
    box-shadow: 0 14px 30px rgba(18, 64, 112, .16);
}

.pep2-training-badge-google {
    background: linear-gradient(135deg, #1769d2, #0b4ca8);
}

.pep2-training-badge-social {
    background: linear-gradient(135deg, #6254dc, #315fcd);
}

.pep2-training h3 {
    width: min(100%, 850px);
    margin: 0 auto;
    color: #173657;
    font-size: clamp(29px, 3vw, 48px);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.12;
    text-wrap: balance;
}

.pep2-training-value {
    margin: 24px 0 0;
    color: #087fd5;
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 950;
    letter-spacing: .035em;
    line-height: 1.3;
    text-transform: uppercase;
}

.pep2-services {
    margin-top: 38px;
}

@media (max-width: 700px) {
    .pep2-visual img {
        width: 92%;
        max-height: 330px;
    }

    .pep2-training {
        width: 100%;
        padding: 32px 22px;
        border-radius: 22px;
    }

    .pep2-training-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .pep2-training-badge {
        width: 100%;
    }
}

/* CAPACITACIÓN PREMIUM SECCIÓN 2 — FIN */

/* COMPROMISO Y SERVICIOS — INICIO */

.mds-commitment {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 8vw, 128px) 0;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(44, 132, 255, .18),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 84%,
            rgba(21, 99, 214, .16),
            transparent 30%
        ),
        linear-gradient(145deg, #061a37 0%, #09254c 52%, #071a35 100%);
}

.mds-commitment::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .055) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.mds-commitment-shell {
    position: relative;
    z-index: 1;
    width: min(94%, 1540px);
    margin-inline: auto;
}

.mds-commitment-main-image {
    width: min(100%, 1240px);
    margin: 0 auto clamp(48px, 6vw, 82px);
}

.mds-commitment-main-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: contain;
    filter: drop-shadow(0 28px 46px rgba(0, 0, 0, .28));
}

.mds-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 34px);
}

.mds-service-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 22px;
    min-height: 210px;
    padding: clamp(28px, 2.6vw, 40px);
    align-items: start;
    border: 1px solid rgba(166, 207, 255, .20);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .09),
            rgba(255, 255, 255, .035)
        );
    box-shadow:
        0 24px 55px rgba(0, 0, 0, .16),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.mds-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93, 171, 255, .52);
    background:
        linear-gradient(
            145deg,
            rgba(70, 151, 255, .15),
            rgba(255, 255, 255, .055)
        );
}

.mds-service-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #278dff 0%, #076ad7 100%);
    box-shadow:
        0 16px 32px rgba(0, 112, 238, .28),
        inset 0 1px 0 rgba(255, 255, 255, .28);
}

.mds-service-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mds-service-icon svg path:first-child {
    fill: none;
}

.mds-service-copy {
    min-width: 0;
}

.mds-service-copy h3 {
    margin: 3px 0 13px;
    color: #f6f9ff;
    font-size: clamp(22px, 1.65vw, 28px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.025em;
}

.mds-service-copy p {
    margin: 0;
    color: #c6d4e7;
    font-size: clamp(17px, 1.15vw, 19px);
    line-height: 1.58;
}

.mds-commitment-logos {
    width: min(100%, 1260px);
    margin: clamp(54px, 7vw, 94px) auto 0;
    padding-top: clamp(32px, 4vw, 50px);
    border-top: 1px solid rgba(177, 210, 250, .18);
}

.mds-commitment-logos img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .20));
}

@media (max-width: 1080px) {
    .mds-commitment-grid {
        grid-template-columns: 1fr;
    }

    .mds-service-card {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .mds-commitment {
        padding: 68px 0;
    }

    .mds-commitment-shell {
        width: 92%;
    }

    .mds-commitment-main-image img {
        border-radius: 18px;
    }

    .mds-service-card {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 30px 24px;
        text-align: center;
    }

    .mds-service-icon {
        width: 68px;
        height: 68px;
    }

    .mds-service-copy h3 {
        font-size: 23px;
    }

    .mds-service-copy p {
        font-size: 17px;
    }
}

/* COMPROMISO Y SERVICIOS — FIN */

/* WHATSAPP FLOTANTE GLOBAL — INICIO */

.mdv-wa-float {
    position: fixed;
    z-index: 9000;
    right: clamp(18px, 2vw, 30px);
    bottom: clamp(20px, 2vw, 32px);
    display: grid;
    width: 68px;
    height: 68px;
    padding: 0;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    background: #25d366;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .28),
        0 0 0 7px rgba(37, 211, 102, .12);
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.mdv-wa-float:hover,
.mdv-wa-float:focus-visible {
    transform: translateY(-4px) scale(1.04);
    background: #20bd5a;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, .32),
        0 0 0 9px rgba(37, 211, 102, .16);
}

.mdv-wa-float svg {
    width: 39px;
    height: 39px;
    fill: #fff;
}

.mdv-wa-modal {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
}

.mdv-wa-modal[hidden] {
    display: none;
}

.mdv-wa-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 29, .78);
    backdrop-filter: blur(8px);
}

.mdv-wa-dialog {
    position: relative;
    z-index: 1;
    width: min(94vw, 510px);
    padding: 42px 40px 36px;
    border: 1px solid rgba(123, 184, 255, .28);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top,
            rgba(39, 126, 225, .18),
            transparent 44%
        ),
        linear-gradient(145deg, #0a2447, #06182f);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .46);
    color: #fff;
    text-align: center;
}

.mdv-wa-close {
    position: absolute;
    top: 14px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}

.mdv-wa-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #4de27f;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mdv-wa-dialog h2 {
    margin: 0;
    color: #f7f9fd;
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.08;
}

.mdv-wa-dialog p {
    margin: 18px auto 25px;
    color: #c8d5e7;
    font-size: 18px;
    line-height: 1.5;
}

.mdv-wa-qr {
    display: block;
    width: min(100%, 310px);
    height: auto;
    margin: 0 auto 22px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
}

.mdv-wa-dialog > strong {
    display: block;
    color: #fff;
    font-size: 21px;
    letter-spacing: .035em;
}

body.mdv-wa-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .mdv-wa-float {
        width: 62px;
        height: 62px;
    }

    .mdv-wa-float svg {
        width: 35px;
        height: 35px;
    }

    .mdv-wa-dialog {
        padding: 38px 24px 30px;
    }
}

/* WHATSAPP FLOTANTE GLOBAL — FIN */

/* AJUSTES FINALES CONTACTO WHATSAPP LOGO — INICIO */

/* Logo integrado como placa visual deliberada */
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-brand-logo,
.brand img {
    display: block;
    width: clamp(205px, 15vw, 235px);
    height: 66px;
    padding: 5px 10px;
    border: 1px solid rgba(147, 184, 229, .28);
    border-radius: 17px;
    background:
        linear-gradient(145deg, #eef4fb 0%, #dbe5f0 100%);
    object-fit: contain;
    object-position: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .90),
        0 8px 22px rgba(0, 0, 0, .18);
}

/* Mensaje final de contacto */
.contact-whatsapp-message {
    width: min(100%, 720px);
    margin: 24px auto 0;
    color: #116bd4;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
}

/* Identidad del pie */
.footer-brand-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #f6f1e6;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.02;
    text-transform: uppercase;
}

.footer-brand-stack span:nth-child(2),
.footer-brand-stack span:nth-child(4) {
    color: #4ba4ff;
}

/* WhatsApp flotante */
.mdv-wa-float {
    position: fixed;
    z-index: 9000;
    right: clamp(18px, 2vw, 30px);
    bottom: clamp(20px, 2vw, 32px);
    display: grid;
    width: 68px;
    height: 68px;
    padding: 0;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .90);
    border-radius: 50%;
    background: #25d366;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .30),
        0 0 0 7px rgba(37, 211, 102, .13);
    cursor: pointer;
}

.mdv-wa-float svg {
    width: 39px;
    height: 39px;
    fill: #fff;
}

.mdv-wa-modal {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
}

.mdv-wa-modal[hidden] {
    display: none;
}

.mdv-wa-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 29, .80);
    backdrop-filter: blur(8px);
}

.mdv-wa-dialog {
    position: relative;
    z-index: 1;
    width: min(94vw, 500px);
    padding: 42px 38px 34px;
    border: 1px solid rgba(123, 184, 255, .28);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top,
            rgba(39, 126, 225, .18),
            transparent 44%
        ),
        linear-gradient(145deg, #0a2447, #06182f);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
    color: #fff;
    text-align: center;
}

.mdv-wa-close {
    position: absolute;
    top: 14px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 31px;
    cursor: pointer;
}

.mdv-wa-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #4de27f;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mdv-wa-dialog h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(29px, 3vw, 40px);
    line-height: 1.1;
}

.mdv-wa-dialog p {
    margin: 17px auto 24px;
    color: #c8d5e7;
    font-size: 18px;
    line-height: 1.5;
}

.mdv-wa-qr {
    display: block;
    width: min(100%, 310px);
    height: auto;
    margin: 0 auto 21px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
}

.mdv-wa-dialog > strong {
    display: block;
    font-size: 22px;
}

body.mdv-wa-modal-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .site-brand-logo,
    .brand img {
        width: 165px;
        height: 54px;
        padding: 4px 8px;
    }

    .footer-brand-stack {
        align-items: center;
        text-align: center;
    }

    .mdv-wa-float {
        width: 62px;
        height: 62px;
    }

    .mdv-wa-float svg {
        width: 35px;
        height: 35px;
    }
}

/* AJUSTES FINALES CONTACTO WHATSAPP LOGO — FIN */

/* MARCA FOOTER Y CTA WHATSAPP — INICIO */

.footer-brand-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: #eee3cc;
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .98;
    text-transform: uppercase;
}

.footer-brand-stack span:nth-child(2),
.footer-brand-stack span:nth-child(4) {
    color: #4da5ff;
}

.contact-whatsapp-cta {
    display: inline-flex;
    gap: 14px;
    min-height: 64px;
    margin: 28px auto 0;
    padding: 16px 28px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 999px;
    background:
        linear-gradient(135deg, #2bd86b 0%, #1ebd58 55%, #139746 100%);
    color: #fff;
    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    box-shadow:
        0 18px 42px rgba(15, 128, 63, .30),
        0 0 0 7px rgba(37, 211, 102, .12);
    cursor: pointer;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.contact-whatsapp-cta:hover,
.contact-whatsapp-cta:focus-visible {
    transform: translateY(-4px);
    filter: brightness(1.05);
    box-shadow:
        0 24px 50px rgba(15, 128, 63, .36),
        0 0 0 9px rgba(37, 211, 102, .16);
}

.contact-whatsapp-cta svg {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    fill: #fff;
}

@media (max-width: 700px) {
    .footer-brand-stack {
        align-items: center;
        text-align: center;
    }

    .contact-whatsapp-cta {
        width: 100%;
        padding: 15px 20px;
        font-size: 17px;
    }
}

/* MARCA FOOTER Y CTA WHATSAPP — FIN */

/* MARCA EN RECUADRO WHATSAPP — INICIO */

.contact-brand-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 30px;
    color: #eee3cc;
    font-size: clamp(30px, 2.8vw, 48px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: .96;
    text-transform: uppercase;
}

.contact-brand-stack span:nth-child(2),
.contact-brand-stack span:nth-child(4) {
    color: #4da5ff;
}

@media (max-width: 760px) {
    .contact-brand-stack {
        align-items: center;
        text-align: center;
    }
}

/* MARCA EN RECUADRO WHATSAPP — FIN */

/* NUMERO QR VERDE PREMIUM — INICIO */
.qr-phone-premium {
    display: inline-block;
    color: #25d366 !important;
    font-size: 1.15em;
    font-weight: 900;
    letter-spacing: .04em;
    text-shadow:
        0 0 10px rgba(37, 211, 102, .32),
        0 2px 10px rgba(0, 0, 0, .28);
}
/* NUMERO QR VERDE PREMIUM — FIN */

/* PAGINA NOSOTROS MARKETING DIGITAL SEO — INICIO */

.mdv-nosotros {
    background: #f5f2eb;
    color: #07192f;
    overflow: hidden;
}

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

.mdv-nosotros-hero {
    position: relative;
    padding: clamp(80px, 10vw, 150px) 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(44, 145, 255, .22), transparent 33%),
        linear-gradient(135deg, #061426 0%, #0a2544 58%, #0d335e 100%);
    color: #fff;
}

.mdv-nosotros-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 192, 133, .8), transparent);
}

.mdv-nosotros-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(45px, 7vw, 95px);
    align-items: center;
}

.mdv-nosotros-kicker,
.mdv-nosotros-etiqueta {
    display: inline-block;
    margin-bottom: 18px;
    color: #d9bd82;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mdv-nosotros h1 {
    max-width: 720px;
    margin: 0 0 30px;
    color: #fff;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .86;
}

.mdv-nosotros-hero-content p {
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .79);
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.7;
}

.mdv-nosotros-hero-content .mdv-nosotros-lead {
    color: #fff;
    font-size: clamp(21px, 1.8vw, 27px);
    line-height: 1.5;
}

.mdv-nosotros-logo {
    position: relative;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 34px 80px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
}

.mdv-nosotros-logo::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: 40px;
    background: rgba(47, 147, 255, .16);
    filter: blur(30px);
}

.mdv-nosotros-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.mdv-nosotros-historia {
    padding: clamp(85px, 10vw, 145px) 0;
}

.mdv-nosotros-bloque {
    display: grid;
    grid-template-columns: 140px minmax(0, 780px);
    gap: 55px;
    justify-content: center;
}

.mdv-nosotros-numero {
    color: rgba(10, 50, 90, .11);
    font-size: clamp(90px, 11vw, 160px);
    font-weight: 950;
    letter-spacing: -.08em;
    line-height: .8;
}

.mdv-nosotros h2 {
    margin: 0 0 26px;
    color: #07192f;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 920;
    letter-spacing: -.045em;
    line-height: 1;
}

.mdv-nosotros-historia p,
.mdv-nosotros-card p,
.mdv-nosotros-servicios p {
    color: #465568;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.8;
}

.mdv-nosotros-proposito {
    padding: clamp(85px, 9vw, 130px) 0;
    background: #07192f;
}

.mdv-nosotros-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mdv-nosotros-card {
    position: relative;
    min-height: 470px;
    padding: clamp(38px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    box-shadow: 0 28px 65px rgba(0, 0, 0, .2);
}

.mdv-nosotros-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(44, 145, 255, .15);
    filter: blur(10px);
}

.mdv-nosotros-card h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
}

.mdv-nosotros-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .72);
}

.mdv-nosotros-card-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 40px;
    place-items: center;
    border: 1px solid rgba(217, 189, 130, .55);
    border-radius: 50%;
    color: #d9bd82;
    font-weight: 900;
}

.mdv-nosotros-valores {
    padding: clamp(90px, 10vw, 150px) 0;
}

.mdv-nosotros-heading {
    max-width: 850px;
    margin-bottom: 60px;
}

.mdv-nosotros-valores-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mdv-nosotros-valores-grid article {
    padding: 34px 28px;
    border: 1px solid rgba(7, 25, 47, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 18px 40px rgba(7, 25, 47, .06);
}

.mdv-nosotros-valores-grid article > span {
    display: block;
    margin-bottom: 50px;
    color: #2f91ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.mdv-nosotros-valores-grid h3 {
    margin: 0 0 15px;
    color: #07192f;
    font-size: 23px;
}

.mdv-nosotros-valores-grid p {
    margin: 0;
    color: #566375;
    font-size: 16px;
    line-height: 1.7;
}

.mdv-nosotros-servicios {
    padding: clamp(90px, 10vw, 145px) 0;
    background: #e9edf1;
}

.mdv-nosotros-servicios-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
    gap: clamp(55px, 8vw, 120px);
}

.mdv-nosotros-lista {
    border-top: 1px solid rgba(7, 25, 47, .17);
}

.mdv-nosotros-lista div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid rgba(7, 25, 47, .17);
}

.mdv-nosotros-lista span {
    color: #2f91ff;
    font-size: 13px;
    font-weight: 900;
}

.mdv-nosotros-lista p {
    margin: 0;
    color: #132a44;
    font-weight: 750;
    line-height: 1.45;
}

.mdv-nosotros-cierre {
    padding: clamp(100px, 12vw, 175px) 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 100%, rgba(37, 211, 102, .13), transparent 34%),
        #061426;
}

.mdv-nosotros-cierre h2 {
    max-width: 980px;
    margin: 0 auto 46px;
    color: #fff;
    font-size: clamp(48px, 7vw, 92px);
}

.mdv-nosotros-cierre h2 strong {
    color: #d9bd82;
}

.mdv-nosotros-whatsapp {
    min-height: 62px;
    padding: 0 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: #25d366;
    color: #042515;
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(37, 211, 102, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.mdv-nosotros-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(37, 211, 102, .34);
}

@media (max-width: 980px) {
    .mdv-nosotros-hero-grid,
    .mdv-nosotros-servicios-grid {
        grid-template-columns: 1fr;
    }

    .mdv-nosotros-logo {
        max-width: 760px;
    }

    .mdv-nosotros-bloque {
        grid-template-columns: 100px 1fr;
    }

    .mdv-nosotros-valores-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .mdv-nosotros-hero {
        padding: 72px 0 82px;
    }

    .mdv-nosotros-hero-grid {
        gap: 42px;
    }

    .mdv-nosotros h1 {
        font-size: clamp(50px, 17vw, 72px);
    }

    .mdv-nosotros-logo {
        padding: 8px;
        border-radius: 22px;
    }

    .mdv-nosotros-logo img {
        border-radius: 15px;
    }

    .mdv-nosotros-bloque {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mdv-nosotros-numero {
        font-size: 84px;
    }

    .mdv-nosotros-cards,
    .mdv-nosotros-valores-grid {
        grid-template-columns: 1fr;
    }

    .mdv-nosotros-card {
        min-height: auto;
        padding: 38px 26px;
    }

    .mdv-nosotros-servicios-grid {
        gap: 44px;
    }

    .mdv-nosotros-cierre h2 {
        font-size: clamp(43px, 13vw, 66px);
    }

    .mdv-nosotros-whatsapp {
        width: 100%;
    }
}

/* PAGINA NOSOTROS MARKETING DIGITAL SEO — FIN */

/* PAGINA DISENO DE PAGINAS WEB — INICIO */

.mdv-web-page{
    background:#f4f1ea;
    color:#0a1d34;
}

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

.mdv-web-hero{
    padding:clamp(80px,10vw,145px) 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(55,145,255,.18), transparent 33%),
        linear-gradient(135deg,#061426 0%,#0b2748 58%,#0d3460 100%);
    color:#fff;
}

.mdv-web-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
    gap:clamp(42px,7vw,90px);
    align-items:center;
}

.mdv-web-kicker,
.mdv-web-label{
    display:inline-block;
    margin-bottom:16px;
    color:#d8be88;
    font-size:13px;
    font-weight:850;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.mdv-web-page h1{
    margin:0 0 28px;
    color:#fff;
    font-size:clamp(50px,6.2vw,96px);
    font-weight:950;
    letter-spacing:-.065em;
    line-height:.88;
}

.mdv-web-lead{
    color:#fff;
    font-size:clamp(20px,1.65vw,26px);
    line-height:1.55;
}

.mdv-web-hero-copy p{
    margin:0 0 16px;
    color:rgba(255,255,255,.78);
    font-size:clamp(17px,1.25vw,20px);
    line-height:1.75;
}

.mdv-web-hero-image{
    margin:0;
    padding:12px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:28px;
    background:rgba(255,255,255,.07);
    box-shadow:0 30px 70px rgba(0,0,0,.32);
}

.mdv-web-hero-image img{
    display:block;
    width:100%;
    height:auto;
    border-radius:18px;
}

.mdv-web-content{
    padding:clamp(80px,9vw,125px) 0;
}

.mdv-web-content-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.mdv-web-block{
    padding:34px 28px;
    border:1px solid rgba(10,29,52,.08);
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 42px rgba(7,25,47,.06);
}

.mdv-web-block-dark{
    background:linear-gradient(145deg,#07192f,#0e3056);
}

.mdv-web-block h2{
    margin:0 0 18px;
    font-size:clamp(28px,2.8vw,42px);
    font-weight:900;
    letter-spacing:-.04em;
    line-height:1;
}

.mdv-web-block p{
    margin:0 0 14px;
    color:#4b5a6d;
    font-size:17px;
    line-height:1.75;
}

.mdv-web-block-dark h2,
.mdv-web-block-dark p{
    color:#fff;
}

.mdv-web-block-dark p{
    color:rgba(255,255,255,.76);
}

.mdv-pricing{
    padding:clamp(85px,10vw,130px) 0;
    background:#eef2f7;
}

.mdv-pricing-alt{
    background:#f7f4ed;
}

.mdv-pricing-heading{
    text-align:center;
    margin-bottom:42px;
}

.mdv-pricing-heading h2{
    margin:0;
    color:#091e37;
    font-size:clamp(34px,4vw,58px);
    font-weight:900;
    letter-spacing:-.045em;
    line-height:1.05;
}

.mdv-pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
    align-items:start;
}

.mdv-plan-card{
    overflow:hidden;
    border:1px solid rgba(7,25,47,.10);
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 42px rgba(7,25,47,.08);
}

.mdv-plan-head{
    padding:36px 28px;
    text-align:center;
    background:#1f79e8;
    color:#fff;
}

.mdv-plan-head h3{
    margin:0 0 10px;
    font-size:42px;
    font-weight:900;
    letter-spacing:-.04em;
}

.mdv-plan-head p{
    margin:0;
    font-size:29px;
    font-weight:900;
    line-height:1.2;
}

.mdv-plan-head span{
    display:block;
    margin-top:8px;
    font-size:19px;
    opacity:.95;
}

.mdv-plan-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.mdv-plan-card li{
    padding:16px 20px;
    border-top:1px solid rgba(7,25,47,.10);
    color:#425163;
    font-size:16px;
    line-height:1.45;
    text-align:center;
}

.mdv-plan-card .mdv-plan-btn{
    display:block;
    width:calc(100% - 44px);
    min-height:56px;
    margin:24px auto 24px;
    border:0;
    border-radius:999px;
    background:#1f79e8;
    color:#fff;
    font:inherit;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}

.mdv-plan-card-featured{
    transform:translateY(-12px);
    box-shadow:0 30px 56px rgba(31,121,232,.20);
}

.mdv-plan-card-featured .mdv-plan-head{
    background:linear-gradient(145deg,#1f79e8,#0f61ca);
}

.mdv-plan-card-featured .mdv-plan-btn{
    background:#ffffff;
    color:#1f79e8;
    border:2px solid #1f79e8;
}

@media (max-width: 1024px){
    .mdv-web-hero-grid,
    .mdv-web-content-grid,
    .mdv-pricing-grid{
        grid-template-columns:1fr;
    }

    .mdv-plan-card-featured{
        transform:none;
    }
}

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

    .mdv-web-page h1{
        font-size:clamp(46px,15vw,70px);
    }

    .mdv-web-block{
        padding:28px 22px;
    }

    .mdv-plan-head h3{
        font-size:34px;
    }

    .mdv-plan-head p{
        font-size:24px;
    }

    .mdv-plan-card .mdv-plan-btn{
        width:calc(100% - 32px);
    }
}

/* PAGINA DISENO DE PAGINAS WEB — FIN */

/* PIE GLOBAL PREMIUM — INICIO */

.mdv-site-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 120px) 0 0;
    background:
        radial-gradient(circle at 8% 5%, rgba(49, 145, 255, .18), transparent 30%),
        radial-gradient(circle at 92% 90%, rgba(37, 211, 102, .09), transparent 27%),
        linear-gradient(145deg, #05111f 0%, #071b31 55%, #092848 100%);
    color: #fff;
}

.mdv-site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 190, 133, .85),
        transparent
    );
}

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

.mdv-footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, .82fr) minmax(360px, 1.22fr) minmax(270px, .9fr);
    gap: clamp(38px, 5vw, 75px);
    align-items: start;
}

.mdv-footer-logo {
    display: block;
    max-width: 320px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .24);
}

.mdv-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mdv-footer-agency {
    margin: 28px 0 12px;
    color: #dcc493;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mdv-footer-summary {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.75;
}

.mdv-footer-kicker {
    display: block;
    margin-bottom: 10px;
    color: #dcc493;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mdv-site-footer h2 {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
}

.mdv-footer-contact-list {
    display: grid;
    gap: 11px;
}

.mdv-footer-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    text-align: left;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

button.mdv-footer-item {
    font: inherit;
    cursor: pointer;
}

.mdv-footer-item:hover {
    transform: translateY(-2px);
    border-color: rgba(101, 172, 255, .45);
    background: rgba(255, 255, 255, .075);
}

.mdv-footer-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(56, 147, 255, .14);
}

.mdv-footer-icon svg {
    width: 21px;
    height: 21px;
    fill: #63adff;
}

.mdv-footer-item small,
.mdv-footer-item strong {
    display: block;
}

.mdv-footer-item small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mdv-footer-item strong {
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 760;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.mdv-footer-whatsapp {
    border-color: rgba(37, 211, 102, .26);
    background: rgba(37, 211, 102, .075);
}

.mdv-footer-whatsapp .mdv-footer-icon {
    background: #25d366;
    box-shadow: 0 0 24px rgba(37, 211, 102, .22);
}

.mdv-footer-whatsapp .mdv-footer-icon svg {
    fill: #fff;
}

.mdv-footer-whatsapp strong {
    color: #36e478;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .025em;
    text-shadow: 0 0 14px rgba(37, 211, 102, .18);
}

.mdv-footer-hours > p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.75;
}

.mdv-footer-schedule {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.mdv-footer-schedule div {
    padding: 20px;
}

.mdv-footer-schedule div + div {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mdv-footer-schedule span,
.mdv-footer-schedule strong {
    display: block;
}

.mdv-footer-schedule span {
    margin-bottom: 8px;
    color: #dcc493;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mdv-footer-schedule strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
}

.mdv-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: clamp(55px, 7vw, 90px);
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mdv-footer-bottom p,
.mdv-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.mdv-footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .mdv-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mdv-footer-brand {
        grid-column: 1 / -1;
    }

    .mdv-footer-summary {
        max-width: 600px;
    }
}

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

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

    .mdv-footer-brand {
        grid-column: auto;
        text-align: center;
    }

    .mdv-footer-logo {
        max-width: 300px;
        margin-inline: auto;
    }

    .mdv-footer-summary {
        margin-inline: auto;
    }

    .mdv-footer-contact,
    .mdv-footer-hours {
        text-align: center;
    }

    .mdv-footer-item {
        text-align: left;
    }

    .mdv-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* PIE GLOBAL PREMIUM — FIN */

/* COTIZACIONES FLOTANTES — INICIO */

.mdv-quote-float {
    position: fixed;
    right: 22px;
    bottom: 118px;
    z-index: 9990;
    width: 88px;
    height: 88px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .28));
    transition: transform .22s ease, filter .22s ease;
}

.mdv-quote-float:hover {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .36));
}

.mdv-quote-float svg {
    display: block;
    width: 100%;
    height: 100%;
}

.mdv-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    overflow-y: auto;
    padding: 28px;
    background: rgba(2, 10, 20, .84);
    backdrop-filter: blur(12px);
}

body.mdv-quote-open {
    overflow: hidden;
}

.mdv-quote-panel {
    position: relative;
    width: min(940px, 100%);
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid rgba(217, 190, 135, .34);
    border-radius: 30px;
    background: #f5f2eb;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .48);
}

.mdv-quote-close {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(0, 0, 0, .18);
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.mdv-quote-header {
    padding: 54px clamp(24px, 6vw, 70px) 46px;
    background:
        radial-gradient(circle at 90% 10%, rgba(65, 154, 255, .25), transparent 32%),
        linear-gradient(145deg, #061426, #0b3159);
    color: #fff;
}

.mdv-quote-header > span {
    color: #dcc28e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mdv-quote-header h2 {
    margin: 12px 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .95;
}

.mdv-quote-header p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
    line-height: 1.65;
}

.mdv-quote-form {
    padding: clamp(28px, 6vw, 66px);
}

.mdv-quote-section-title {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 12px 0 24px;
}

.mdv-quote-section-title > span {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #0a294a;
    color: #dcc28e;
    font-size: 12px;
    font-weight: 900;
}

.mdv-quote-section-title h3 {
    margin: 3px 0 0;
    color: #07192f;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.mdv-quote-section-title p {
    margin: 8px 0 0;
    color: #596678;
    font-size: 15px;
    line-height: 1.65;
}

.mdv-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.mdv-quote-form label {
    display: grid;
    gap: 9px;
}

.mdv-quote-form label > span {
    color: #172b43;
    font-size: 14px;
    font-weight: 800;
}

.mdv-quote-form label small {
    color: #6f7b8a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.mdv-quote-form input,
.mdv-quote-form select,
.mdv-quote-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid rgba(7, 25, 47, .17);
    border-radius: 13px;
    background: #fff;
    color: #07192f;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mdv-quote-form textarea {
    min-height: 130px;
    resize: vertical;
}

.mdv-quote-form input:focus,
.mdv-quote-form select:focus,
.mdv-quote-form textarea:focus {
    border-color: #2f91ff;
    box-shadow: 0 0 0 4px rgba(47, 145, 255, .12);
}

.mdv-quote-full {
    margin-bottom: 34px;
}

.mdv-quote-references {
    margin: 42px 0;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(217, 190, 135, .55);
    border-radius: 22px;
    background: #fffaf0;
}

.mdv-quote-human {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    margin: 34px 0 24px;
    padding: 22px;
    border-radius: 18px;
    background: #e8edf3;
}

.mdv-quote-human strong {
    display: block;
    color: #07192f;
    font-size: 18px;
}

.mdv-quote-human p {
    margin: 5px 0 0;
    color: #5c6978;
    font-size: 14px;
}

.mdv-quote-math {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.mdv-quote-math > span {
    white-space: nowrap;
    font-size: 19px !important;
}

.mdv-quote-math input {
    width: 82px;
}

.mdv-quote-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mdv-quote-check input {
    flex: 0 0 22px;
    width: 22px;
    min-height: 22px;
    margin: 0;
    accent-color: #25d366;
}

.mdv-quote-privacy {
    margin: 20px 0 28px;
}

.mdv-quote-submit {
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1677e8, #0d4f9d);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: .04em;
    box-shadow: 0 18px 36px rgba(22, 119, 232, .22);
}

.mdv-quote-submit:disabled {
    cursor: wait;
    opacity: .65;
}

.mdv-quote-status {
    min-height: 24px;
    margin-top: 18px;
    color: #445366;
    font-size: 15px;
    font-weight: 750;
    text-align: center;
}

.mdv-quote-status.is-success {
    color: #087b3b;
}

.mdv-quote-status.is-error {
    color: #b42318;
}

.mdv-quote-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 720px) {
    .mdv-quote-float {
        right: 15px;
        bottom: 105px;
        width: 76px;
        height: 76px;
    }

    .mdv-quote-modal {
        padding: 10px;
    }

    .mdv-quote-panel {
        margin: 5px auto;
        border-radius: 22px;
    }

    .mdv-quote-grid {
        grid-template-columns: 1fr;
    }

    .mdv-quote-human {
        grid-template-columns: 1fr;
    }

    .mdv-quote-math {
        justify-content: center;
    }

    .mdv-quote-header {
        padding-top: 62px;
    }
}

/* COTIZACIONES FLOTANTES — FIN */

/* CONSULTA Y REFERENCIAS PREMIUM — INICIO */

.mdv-diagnostic-global {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 110px) 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(44, 145, 255, .22), transparent 30%),
        linear-gradient(135deg, #081a30 0%, #0a2b4f 58%, #0b3766 100%);
    color: #fff;
}

.mdv-diagnostic-global::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 194, 142, .9),
        transparent
    );
}

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

.mdv-diagnostic-global-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
}

.mdv-diagnostic-global-grid > div > span {
    display: block;
    margin-bottom: 18px;
    color: #dcc28e;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mdv-diagnostic-global h2 {
    max-width: 850px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .98;
}

.mdv-diagnostic-global h2 strong {
    display: block;
    color: #62afff;
}

.mdv-diagnostic-global p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.75;
}

.mdv-diagnostic-global-button {
    display: grid;
    width: 220px;
    min-height: 220px;
    padding: 30px;
    place-content: center;
    border: 1px solid rgba(220, 194, 142, .72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(78, 165, 255, .28), transparent 38%),
        #06172b;
    color: #fff;
    cursor: pointer;
    text-align: center;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .32),
        inset 0 0 0 7px rgba(255, 255, 255, .025);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.mdv-diagnostic-global-button:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow:
        0 38px 72px rgba(0, 0, 0, .4),
        0 0 35px rgba(52, 148, 255, .16);
}

.mdv-diagnostic-global-button span {
    margin-bottom: 10px;
    color: #dcc28e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.mdv-diagnostic-global-button strong {
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1.05;
}

.mdv-reference-list {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.mdv-reference-card {
    display: grid;
    grid-template-columns: 120px minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(7, 25, 47, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(7, 25, 47, .055);
}

.mdv-reference-card > strong {
    padding-top: 14px;
    color: #1677e8;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mdv-reference-card textarea {
    min-height: 92px;
}

.mdv-quote-diagnostic {
    position: relative;
    overflow: hidden;
    margin: 42px 0;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(220, 194, 142, .55);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 5%, rgba(66, 153, 255, .22), transparent 31%),
        linear-gradient(145deg, #061426, #0b3159);
    color: #fff;
}

.mdv-quote-diagnostic-kicker {
    display: block;
    margin-bottom: 14px;
    color: #dcc28e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mdv-quote-diagnostic h3 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(31px, 4.2vw, 50px);
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1;
}

.mdv-quote-diagnostic h3 strong {
    display: block;
    color: #62afff;
}

.mdv-quote-diagnostic > p {
    max-width: 720px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.7;
}

.mdv-quote-diagnostic-button {
    min-height: 56px;
    padding: 0 27px;
    border: 1px solid #dcc28e;
    border-radius: 999px;
    background: #dcc28e;
    color: #061426;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .05em;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
}

.mdv-diagnostic-pass {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    background: #fff;
    color: #07192f;
    text-align: center;
}

.mdv-diagnostic-pass[hidden] {
    display: none !important;
}

.mdv-diagnostic-pass > span {
    display: block;
    margin-bottom: 7px;
    color: #556476;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.mdv-diagnostic-pass > strong {
    display: block;
    color: #0c62bc;
    font-size: clamp(27px, 5vw, 42px);
    font-weight: 950;
    letter-spacing: .08em;
}

.mdv-diagnostic-pass svg {
    display: block;
    width: min(100%, 620px);
    height: auto;
    margin: 18px auto 10px;
}

.mdv-diagnostic-pass svg rect {
    fill: #061426;
}

.mdv-diagnostic-pass svg text {
    fill: #061426;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mdv-diagnostic-pass small {
    display: block;
    color: #667486;
    font-size: 13px;
    font-weight: 750;
}

.mdv-diagnostic-pass p {
    margin: 12px 0 0;
    color: #3f4f62;
    font-size: 14px;
}

@media (max-width: 900px) {
    .mdv-diagnostic-global-grid {
        grid-template-columns: 1fr;
    }

    .mdv-diagnostic-global-button {
        width: 190px;
        min-height: 190px;
    }

    .mdv-reference-card {
        grid-template-columns: 1fr;
    }

    .mdv-reference-card > strong {
        padding-top: 0;
    }
}

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

    .mdv-diagnostic-global {
        text-align: center;
    }

    .mdv-diagnostic-global-button {
        margin-inline: auto;
    }

    .mdv-reference-card {
        padding: 18px;
    }

    .mdv-quote-diagnostic {
        text-align: center;
    }

    .mdv-quote-diagnostic-button {
        width: 100%;
    }
}

/* CONSULTA Y REFERENCIAS PREMIUM — FIN */


/* BOTON CONFERENCIA GRATIS — INICIO */
.mdv-nav-conference{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 20px !important;
    border:1px solid rgba(255,255,255,.36);
    border-radius:999px;
    background:linear-gradient(135deg,#f2d28a 0%,#dba94c 100%);
    color:#071a2d !important;
    font-weight:800 !important;
    letter-spacing:.035em;
    line-height:1.1;
    text-align:center;
    text-decoration:none !important;
    white-space:nowrap;
    box-shadow:0 10px 26px rgba(0,0,0,.22);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.mdv-nav-conference:hover,
.mdv-nav-conference:focus-visible{
    color:#071a2d !important;
    transform:translateY(-2px);
    filter:brightness(1.05);
    box-shadow:0 14px 34px rgba(0,0,0,.3);
}

.mdv-conference-hero .container{
    display:block;
}

.mdv-conference-hero .mdv-web-hero-copy{
    width:min(100%,960px);
    margin:0 auto;
    text-align:center;
}

.mdv-conference-hero .mdv-web-lead{
    margin-left:auto;
    margin-right:auto;
}

.mdv-conference-cta{
    display:inline-flex;
    width:auto;
    min-width:260px;
    margin-top:24px;
    padding:0 30px;
    text-decoration:none;
}

.mdv-conference-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

@media (max-width:900px){
    .mdv-nav-conference-item{
        width:100%;
    }

    .mdv-nav-conference{
        width:100%;
        margin-top:8px;
        white-space:normal;
    }

    .mdv-conference-cta{
        width:100%;
        min-width:0;
    }
}
/* BOTON CONFERENCIA GRATIS — FIN */


/* CONFERENCIA GRATIS DESTACADA — INICIO */
.mdv-nav-conference{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 22px !important;
    border:1px solid rgba(255,255,255,.42);
    border-radius:999px;
    background:linear-gradient(135deg,#f5d98f 0%,#d9a543 100%);
    color:#071a2d !important;
    font-weight:900 !important;
    letter-spacing:.04em;
    line-height:1.1;
    text-align:center;
    text-decoration:none !important;
    white-space:nowrap;
    box-shadow:0 10px 28px rgba(0,0,0,.28);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.mdv-nav-conference:hover,
.mdv-nav-conference:focus-visible{
    color:#071a2d !important;
    transform:translateY(-2px);
    filter:brightness(1.06);
    box-shadow:0 14px 34px rgba(0,0,0,.36);
}

@media (max-width:900px){
    .mdv-nav-conference-item{
        width:100%;
    }

    .mdv-nav-conference{
        width:100%;
        margin-top:10px;
        white-space:normal;
    }
}
/* CONFERENCIA GRATIS DESTACADA — FIN */

/* CONFERENCIA GRATIS SUPER DESTACADA — INICIO */
.mdv-nav-conference-item{
    display:flex;
    align-items:center;
    margin-left:10px;
}

.mdv-nav-conference{
    position:relative;
    isolation:isolate;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 27px !important;
    overflow:hidden;
    border:2px solid #fff1bd !important;
    border-radius:999px;
    background:
        linear-gradient(
            135deg,
            #fff2ae 0%,
            #f3c456 42%,
            #d99722 100%
        ) !important;
    color:#071a2d !important;
    font-size:15px !important;
    font-weight:950 !important;
    letter-spacing:.055em !important;
    line-height:1 !important;
    text-align:center;
    text-transform:uppercase;
    text-decoration:none !important;
    white-space:nowrap;
    transform:scale(1.04);
    box-shadow:
        0 0 0 4px rgba(243,196,86,.16),
        0 10px 30px rgba(0,0,0,.34),
        0 0 28px rgba(243,196,86,.32);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
    animation:mdvConferenciaPulso 2.8s ease-in-out infinite;
}

.mdv-nav-conference::before{
    content:"★";
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:9px;
    font-size:14px;
    line-height:1;
}

.mdv-nav-conference::after{
    content:"";
    position:absolute;
    z-index:-1;
    top:-40%;
    left:-45%;
    width:30%;
    height:180%;
    background:rgba(255,255,255,.58);
    transform:rotate(22deg);
    animation:mdvConferenciaBrillo 3.6s ease-in-out infinite;
}

.mdv-nav-conference:hover,
.mdv-nav-conference:focus-visible{
    color:#071a2d !important;
    filter:brightness(1.08);
    transform:translateY(-3px) scale(1.08);
    box-shadow:
        0 0 0 5px rgba(243,196,86,.22),
        0 16px 38px rgba(0,0,0,.42),
        0 0 36px rgba(243,196,86,.48);
}

@keyframes mdvConferenciaPulso{
    0%,
    100%{
        box-shadow:
            0 0 0 4px rgba(243,196,86,.13),
            0 10px 30px rgba(0,0,0,.34),
            0 0 22px rgba(243,196,86,.24);
    }

    50%{
        box-shadow:
            0 0 0 7px rgba(243,196,86,.07),
            0 13px 34px rgba(0,0,0,.38),
            0 0 34px rgba(243,196,86,.43);
    }
}

@keyframes mdvConferenciaBrillo{
    0%,
    55%{
        left:-45%;
    }

    78%,
    100%{
        left:125%;
    }
}

@media (max-width:900px){
    .mdv-nav-conference-item{
        width:100%;
        margin:12px 0 0;
    }

    .mdv-nav-conference{
        width:100%;
        min-height:56px;
        padding:0 22px !important;
        font-size:16px !important;
        transform:none;
        white-space:normal;
    }

    .mdv-nav-conference:hover,
    .mdv-nav-conference:focus-visible{
        transform:translateY(-2px);
    }
}

@media (prefers-reduced-motion:reduce){
    .mdv-nav-conference,
    .mdv-nav-conference::after{
        animation:none;
    }
}
/* CONFERENCIA GRATIS SUPER DESTACADA — FIN */

/* IMAGEN CONFERENCIA GRATIS — INICIO */
.mdv-conference-hero .container{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1.08fr);
    align-items:center;
    gap:clamp(32px,5vw,72px);
}

.mdv-conference-hero .mdv-web-hero-copy{
    width:100%;
    margin:0;
    text-align:center;
}

.mdv-conference-image{
    display:block;
    width:100%;
    max-width:760px;
    margin:0 auto;
    overflow:hidden;
    border:1px solid rgba(242,210,138,.24);
    border-radius:24px;
    background:#081b2e;
    box-shadow:0 24px 60px rgba(0,0,0,.34);
}

.mdv-conference-image img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain;
    object-position:center;
}

@media (max-width:900px){
    .mdv-conference-hero .container{
        grid-template-columns:1fr;
    }

    .mdv-conference-image{
        max-width:720px;
        margin-top:8px;
    }
}

@media (max-width:600px){
    .mdv-conference-image{
        border-radius:16px;
    }
}
/* IMAGEN CONFERENCIA GRATIS — FIN */

/* PAGINA DIPLOMADO MARKETING DIGITAL — INICIO */
.mdv-diplomado-subtitle{
    display:inline-flex;
    margin:8px 0 22px;
    padding:9px 16px;
    border:1px solid rgba(242,210,138,.5);
    border-radius:999px;
    background:rgba(242,210,138,.1);
    color:#f2d28a;
    font-size:clamp(15px,1.5vw,19px);
    font-weight:900;
    letter-spacing:.12em;
}

.mdv-diplomado-outcomes{
    padding:clamp(64px,8vw,110px) 0;
}

.mdv-diplomado-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    margin-top:38px;
}

.mdv-diplomado-list > div{
    position:relative;
    min-height:94px;
    padding:24px 22px 22px 54px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:18px;
    background:rgba(255,255,255,.04);
    line-height:1.55;
}

.mdv-diplomado-list > div::before{
    content:"✓";
    position:absolute;
    top:23px;
    left:22px;
    color:#f2d28a;
    font-weight:900;
}

.mdv-diplomado-modules{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    margin-top:44px;
}

.mdv-diplomado-module{
    padding:clamp(26px,3vw,38px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:22px;
    background:rgba(255,255,255,.035);
}

.mdv-diplomado-module > span{
    display:block;
    margin-bottom:12px;
    color:#f2d28a;
    font-size:13px;
    font-weight:900;
    letter-spacing:.13em;
}

.mdv-diplomado-module h2{
    margin:0 0 16px;
}

.mdv-module-certificate{
    grid-column:1 / -1;
}

.mdv-diplomado-certificate{
    width:min(100%,900px);
    margin:30px auto 20px;
    overflow:hidden;
    border:1px solid rgba(242,210,138,.24);
    border-radius:20px;
    background:#fff;
    box-shadow:0 22px 52px rgba(0,0,0,.26);
}

.mdv-diplomado-certificate img{
    display:block;
    width:100%;
    height:auto;
}

.mdv-diplomado-note{
    width:min(100%,900px);
    margin:0 auto;
    font-size:14px;
    opacity:.78;
}

.mdv-diplomado-actions{
    display:flex;
    justify-content:center;
}

.mdv-diplomado-actions .mdv-plan-btn{
    width:auto;
    min-width:260px;
    padding:0 32px;
}

@media (max-width:900px){
    .mdv-diplomado-list{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .mdv-diplomado-modules{
        grid-template-columns:1fr;
    }

    .mdv-module-certificate{
        grid-column:auto;
    }
}

@media (max-width:600px){
    .mdv-diplomado-list{
        grid-template-columns:1fr;
    }

    .mdv-diplomado-subtitle{
        letter-spacing:.07em;
    }

    .mdv-diplomado-actions .mdv-plan-btn{
        width:100%;
        min-width:0;
    }
}
/* PAGINA DIPLOMADO MARKETING DIGITAL — FIN */

/* MDV INDEX H1 ESTRELLA — INICIO */

.mdv-index-main-h1 {
    display: block;
    width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

.mdv-index-main-h1,
.mdv-index-main-h1 * {
    text-align: center !important;
}

.mdv-index-star-h1 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-height: clamp(94px, 11vw, 150px);
    padding: clamp(24px, 4vw, 46px) 20px;
    background:
        linear-gradient(
            135deg,
            #f4ead8 0%,
            #fffaf0 50%,
            #ead8b8 100%
        );
    border-top: 1px solid rgba(17, 29, 49, .14);
    border-bottom: 1px solid rgba(17, 29, 49, .14);
    text-align: center !important;
}

.mdv-index-star-h1 > h1 {
    display: block !important;
    width: 100% !important;
    max-width: 1180px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #101c31;
    font-size: clamp(1.7rem, 4.2vw, 3.7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .045em;
    text-align: center !important;
    text-transform: uppercase;
    text-wrap: balance;
}

.mdv-index-star-h1-final {
    margin: 0;
}

@media (max-width: 640px) {
    .mdv-index-star-h1 {
        min-height: 82px;
        padding: 24px 16px;
    }

    .mdv-index-star-h1 > h1 {
        font-size: clamp(1.45rem, 8vw, 2.25rem);
        line-height: 1.08;
        text-align: center !important;
    }

    .mdv-index-main-h1 {
        width: 100% !important;
        text-align: center !important;
    }
}

/* MDV INDEX H1 ESTRELLA — FIN */

/* MDV H1 INDEX CENTRADO REAL — INICIO */

.mdv-index-star-h1 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.mdv-index-star-h1 > h1 {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

/* MDV H1 INDEX CENTRADO REAL — FIN */

/* MDV NOSOTROS H1 — INICIO */

.mdv-nosotros-main-h1 {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

.mdv-nosotros-star-h1 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: clamp(28px, 4vw, 48px) 20px;
    background:
        linear-gradient(
            135deg,
            #f4ead8 0%,
            #fffaf0 50%,
            #ead8b8 100%
        );
    border-top: 1px solid rgba(17, 29, 49, .14);
    border-bottom: 1px solid rgba(17, 29, 49, .14);
    text-align: center !important;
}

.mdv-nosotros-star-h1 > h1 {
    display: block !important;
    width: 100% !important;
    max-width: 1180px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #101c31;
    font-size: clamp(1.65rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: .035em;
    text-align: center !important;
    text-transform: uppercase;
    text-wrap: balance;
}

@media (max-width: 640px) {
    .mdv-nosotros-star-h1 {
        padding: 24px 16px;
    }

    .mdv-nosotros-star-h1 > h1 {
        font-size: clamp(1.4rem, 7.5vw, 2.15rem);
        text-align: center !important;
    }

    .mdv-nosotros-main-h1 {
        text-align: center !important;
    }
}

/* MDV NOSOTROS H1 — FIN */

/* H1 NOSOTROS ALINEACION DEFINITIVA — INICIO */

/* Primer H1 del Hero: izquierda */
.mdv-nosotros-hero h1,
.mdv-nosotros-hero .mdv-nosotros-main-h1 {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    text-align: left !important;
}

/* H1 colocados entre secciones: centrados */
.mdv-nosotros-star-h1 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.mdv-nosotros-star-h1 > h1 {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

/* H1 final antes del pie: centrado */
[data-mdv-nosotros-h1="pie-real"] > h1 {
    text-align: center !important;
}

/* H1 NOSOTROS ALINEACION DEFINITIVA — FIN */

/* MDV-GOOGLE-ADS-RESULTADOS-CSS-INICIO */

.mdv-google-ads-brandline {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    width: min(100%, 920px);
    margin-top: clamp(24px, 4vw, 40px);
}

.mdv-google-ads-logo-card {
    flex: 0 0 auto;
    width: clamp(120px, 15vw, 170px);
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.mdv-google-ads-logo-card img {
    display: block;
    width: 100%;
    height: auto;
}

.mdv-google-ads-promise {
    display: grid;
    gap: 10px;
    margin: 0;
}

.mdv-google-ads-promise strong {
    color: #fff;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    line-height: 1.24;
    letter-spacing: .025em;
}

.mdv-google-ads-promise span {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(.96rem, 1.3vw, 1.08rem);
    line-height: 1.6;
}

.mdv-results-section {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 112px) 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(65, 133, 244, .18), transparent 34%),
        linear-gradient(180deg, #071427 0%, #0b1b31 100%);
}

.mdv-results-wrap {
    width: min(96vw, 1680px);
    margin: 0 auto;
}

.mdv-results-header {
    width: min(100%, 980px);
    margin: 0 auto clamp(34px, 5vw, 58px);
    text-align: center;
}

.mdv-results-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #dfbb76;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .2em;
}

.mdv-results-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem, 4.2vw, 4rem);
    line-height: 1.04;
    text-wrap: balance;
}

.mdv-results-header p {
    max-width: 820px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.72;
}

.mdv-results-carousel {
    position: relative;
}

.mdv-results-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: clamp(16px, 2vw, 28px);
    background: #edf3f9;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.mdv-results-slide {
    margin: 0;
}

.mdv-results-slide[hidden] {
    display: none !important;
}

.mdv-results-image-button {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #eef3f8;
    cursor: zoom-in;
}

.mdv-results-image-button img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 20 / 11;
    object-fit: contain;
    background: #eef3f8;
}

.mdv-results-lens {
    position: absolute;
    right: clamp(16px, 2.5vw, 34px);
    bottom: clamp(62px, 6vw, 88px);
    width: 42px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: rgba(4, 17, 35, .72);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .34);
}

.mdv-results-lens::before,
.mdv-results-lens::after {
    content: "";
    position: absolute;
    background: #fff;
}

.mdv-results-lens::before {
    top: 18px;
    left: 10px;
    width: 16px;
    height: 3px;
}

.mdv-results-lens::after {
    top: 11px;
    left: 17px;
    width: 3px;
    height: 16px;
}

.mdv-results-lens {
    transform: rotate(0deg);
}

.mdv-results-lens + .mdv-results-expand-text::before {
    content: "";
}

.mdv-results-expand-text {
    position: absolute;
    right: clamp(16px, 2.5vw, 34px);
    bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 17, 35, .76);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.mdv-results-slide figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
    padding: 16px clamp(18px, 3vw, 40px);
    color: #102039;
    background: #fff;
}

.mdv-results-slide figcaption strong {
    font-size: clamp(.95rem, 1.45vw, 1.15rem);
}

.mdv-results-slide figcaption span {
    color: #466078;
    font-size: clamp(.85rem, 1.2vw, 1rem);
}

.mdv-results-arrow,
.mdv-results-viewer-arrow {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 17, 35, .78);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.mdv-results-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: clamp(44px, 5vw, 66px);
    height: clamp(44px, 5vw, 66px);
    font-size: clamp(2rem, 4vw, 3.4rem);
    transform: translateY(-50%);
}

.mdv-results-arrow-prev {
    left: clamp(10px, 2vw, 26px);
}

.mdv-results-arrow-next {
    right: clamp(10px, 2vw, 26px);
}

.mdv-results-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.mdv-results-dots {
    display: flex;
    gap: 10px;
}

.mdv-results-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.mdv-results-dot.is-active {
    background: #dfbb76;
    border-color: #dfbb76;
    transform: scale(1.2);
}

.mdv-results-counter {
    color: rgba(255, 255, 255, .72);
    font-variant-numeric: tabular-nums;
}

.mdv-results-counter strong {
    color: #fff;
}

body.mdv-results-viewer-open {
    overflow: hidden;
}

.mdv-results-viewer {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    overflow: hidden;
    background: rgba(1, 7, 17, .985);
}

.mdv-results-viewer[hidden] {
    display: none !important;
}

.mdv-results-viewer-top {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 10px 78px 10px 20px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, .82), transparent);
}

.mdv-results-viewer-top p {
    margin: 0;
    overflow: hidden;
    font-size: clamp(.82rem, 1.5vw, 1rem);
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mdv-results-viewer-close {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    color: #fff;
    background: rgba(12, 24, 42, .84);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.mdv-results-viewer-stage {
    position: absolute;
    inset: 64px 0 74px;
    display: grid;
    place-items: center;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    user-select: none;
}

.mdv-results-viewer-stage.is-dragging {
    cursor: grabbing;
}

.mdv-results-viewer-stage img {
    display: block;
    max-width: 96vw;
    max-height: calc(100dvh - 150px);
    object-fit: contain;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center;
    transition: transform .12s ease-out;
    will-change: transform;
    pointer-events: none;
}

.mdv-results-viewer-stage.is-dragging img {
    transition: none;
}

.mdv-results-viewer-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: clamp(46px, 5vw, 64px);
    height: clamp(46px, 5vw, 64px);
    font-size: clamp(2rem, 4vw, 3.3rem);
    transform: translateY(-50%);
}

.mdv-results-viewer-prev {
    left: 10px;
}

.mdv-results-viewer-next {
    right: 10px;
}

.mdv-results-viewer-controls {
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(12, 24, 42, .9);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.mdv-results-viewer-controls button {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
}

.mdv-results-viewer-controls button:nth-child(2) {
    min-width: 76px;
    font-size: .82rem;
}

@media (max-width: 700px) {
    .mdv-google-ads-brandline {
        align-items: flex-start;
        width: 100%;
    }

    .mdv-google-ads-logo-card {
        width: 118px;
        border-radius: 14px;
    }

    .mdv-google-ads-promise strong {
        font-size: .96rem;
    }

    .mdv-google-ads-promise span {
        font-size: .88rem;
        line-height: 1.5;
    }

    .mdv-results-section {
        padding: 58px 0 68px;
    }

    .mdv-results-wrap {
        width: 100%;
    }

    .mdv-results-header {
        width: calc(100% - 32px);
        margin-bottom: 30px;
    }

    .mdv-results-header h2 {
        font-size: clamp(1.75rem, 9vw, 2.55rem);
    }

    .mdv-results-frame {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .mdv-results-image-button img {
        width: 100vw;
        max-width: none;
    }

    .mdv-results-slide figcaption {
        min-height: 68px;
        padding: 13px 16px;
    }

    .mdv-results-slide figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .mdv-results-arrow {
        top: 43%;
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .mdv-results-lens {
        right: 14px;
        bottom: 84px;
        width: 38px;
        height: 38px;
    }

    .mdv-results-expand-text {
        right: 12px;
        bottom: 44px;
    }

    .mdv-results-viewer-top {
        justify-content: flex-start;
        min-height: 58px;
        padding-right: 66px;
    }

    .mdv-results-viewer-top p {
        text-align: left;
    }

    .mdv-results-viewer-stage {
        inset: 58px 0 72px;
    }

    .mdv-results-viewer-stage img {
        max-width: 100vw;
        max-height: calc(100dvh - 132px);
    }

    .mdv-results-viewer-arrow {
        top: auto;
        bottom: 15px;
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .mdv-results-viewer-prev {
        left: 12px;
    }

    .mdv-results-viewer-next {
        right: 12px;
    }

    .mdv-results-viewer-controls {
        bottom: 14px;
    }
}

/* MDV-GOOGLE-ADS-RESULTADOS-CSS-FIN */

/* MDV-GOOGLE-ADWORDS-5-H1-CSS-INICIO */
.mdv-google-adwords-h1-band {
    position: relative;
    padding: clamp(26px, 4vw, 54px) 20px;
    overflow: hidden;
    border-top: 1px solid rgba(223, 187, 118, .22);
    border-bottom: 1px solid rgba(223, 187, 118, .22);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(60, 125, 214, .15),
            transparent 50%
        ),
        linear-gradient(135deg, #08172b 0%, #102541 100%);
}

.mdv-google-adwords-h1-wrap {
    width: min(94vw, 1280px);
    margin: 0 auto;
    text-align: center;
}

.mdv-google-adwords-h1-band h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.65rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: .015em;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 700px) {
    .mdv-google-adwords-h1-band {
        padding: 28px 16px;
    }

    .mdv-google-adwords-h1-band h1 {
        font-size: clamp(1.55rem, 8vw, 2.3rem);
    }
}
/* MDV-GOOGLE-ADWORDS-5-H1-CSS-FIN */


/* MDV-SEO-H1-BAND-CSS-INICIO */
.mdv-seo-h1-band {
    position: relative;
    padding: clamp(28px, 4vw, 54px) 20px;
    overflow: hidden;
    border-top: 1px solid rgba(223, 187, 118, .22);
    border-bottom: 1px solid rgba(223, 187, 118, .22);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(60, 125, 214, .15),
            transparent 50%
        ),
        linear-gradient(135deg, #08172b 0%, #102541 100%);
}

.mdv-seo-h1-wrap {
    width: min(94vw, 1280px);
    margin: 0 auto;
    text-align: center;
}

.mdv-seo-h1-band h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.65rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: .015em;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 700px) {
    .mdv-seo-h1-band {
        padding: 28px 16px;
    }

    .mdv-seo-h1-band h1 {
        font-size: clamp(1.55rem, 8vw, 2.3rem);
    }
}
/* MDV-SEO-H1-BAND-CSS-FIN */

/* MDV-H1-SEO-COMPACTO-INICIO */
.mdv-seo-h1-compact {
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(1rem, 1.7vw, 1.45rem) !important;
    line-height: 1.2 !important;
    letter-spacing: .008em !important;
    text-align: center !important;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 700px) {
    .mdv-seo-h1-compact {
        font-size: clamp(.95rem, 4.5vw, 1.2rem) !important;
        line-height: 1.22 !important;
    }
}
/* MDV-H1-SEO-COMPACTO-FIN */
