/* ==========================
   VARIABLES DE DISEÑO
========================== */

:root {

    /* Colores de marca */
    --color-primary: #f00;
    --color-primary-dark: #c3160a;
    --color-primary-light: #f06c55;

    /* Textos */
    --color-heading: #192334;
    --color-text: #576379;
    --color-muted: #747d8c;

    /* Fondos */
    --color-white: #ffffff;
    --color-cream: #fff8f2;
    --color-cream-light: #fffdf9;
    --color-cream-dark: #ffe2d3;

    /* Bordes */
    --color-border: #e2e7ed;

    /* Gradientes */
    --gradient-brand:
        linear-gradient(
            135deg,
            #f00000 0%,
            #ef5144 48%,
            #c3160a 100%
        );

    --gradient-soft:
        linear-gradient(
            120deg,
            #fffdf9 0%,
            #fff8f2 47%,
            #ffe2d3 100%
        );

    /* Sombras */
    --shadow-soft:
        0 10px 28px rgba(20, 32, 50, 0.08);

    --shadow-card:
        0 14px 34px rgba(31, 39, 54, 0.10);

    /* Radios */
    --radius-small: 10px;
    --radius-medium: 16px;
    --radius-large: 20px;
}


/* ==========================
   RESET
========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--color-heading);
    background: var(--color-white);
}

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

img {
    max-width: 100%;
}


/* ==========================
   HEADER
========================== */

.header {
    position: relative;

    width: 100%;

    background: var(--color-white);

    border-bottom:
        1px solid #eeeeee;

    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    height: 82px;

    margin: auto;

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

    padding:
        0 32px;
}


/* ==========================
   LOGO
========================== */

.logo {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}

.logo img {
    display: block;

    width: 74px;
    height: 74px;

    object-fit: contain;
}

.logo-text {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;

    color:
        var(--color-heading);

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.logo-com {
    display: inline-block;

    margin-left: 2px;

    font-size: 0.78em;
    font-weight: 600;

    color:
        var(--color-primary);

    transition:
        color 0.25s ease;
}

.logo:hover .logo-text {
    color:
        var(--color-primary);
}

.logo:hover .logo-com {
    color:
        var(--color-primary-dark);
}


/* ==========================
   NAVEGACIÓN PRINCIPAL
========================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;

    margin-left: 40px;
    margin-right: 40px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;

    padding: 0;

    color: #414958;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}

.nav-link:hover {
    color:
        var(--color-primary);
}


/* ==========================
   HEADER ACTIONS
========================== */

.header-actions {
    display: flex;
    align-items: center;

    gap: 22px;

    flex-shrink: 0;
}

.info-button {
    padding:
        12px 16px;

    background:
        var(--gradient-brand);

    color:
        var(--color-white);

    border-radius:
        var(--radius-small);

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

    white-space: nowrap;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.info-button:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 7px 18px rgba(233, 52, 44, 0.18);
}


/* ==========================
   MENÚ HAMBURGUESA
========================== */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 0;

    background:
        transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-button span {
    display: block;

    width: 24px;
    height: 2px;

    border-radius: 10px;

    background: #192334;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* ==========================
   MENÚ MÓVIL
========================== */

.mobile-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 999;

    padding:
        12px 20px 22px;

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

    border-top:
        1px solid #edf0f3;

    border-bottom:
        1px solid #e5e8ec;

    box-shadow:
        0 18px 35px rgba(25, 35, 52, 0.10);
}

.mobile-menu a {
    display: flex;
    align-items: center;

    min-height: 52px;

    padding:
        0 8px;

    border-bottom:
        1px solid #edf0f3;

    color:
        #192334;

    font-size: 16px;
    font-weight: 650;
}

.mobile-menu a:hover {
    color:
        var(--color-primary);
}

.mobile-menu.open {
    display: block;

    animation:
        mobileMenuOpen 0.24s ease both;
}

@keyframes mobileMenuOpen {

    from {
        opacity: 0;
        transform:
            translateY(-8px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

.mobile-menu .mobile-info-button {
    justify-content: center;

    margin-top: 14px;

    border: 0;

    border-radius: 11px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff2a21 0%,
            #df2117 100%
        );
}


/* ==========================
   PÁGINA CENTROS
========================== */

.centros-page {
    width: 100%;
}


/* ==========================
   HERO
========================== */

.centros-hero {
    position: relative;

    overflow: hidden;

    min-height:
        calc(100vh - 82px);

    padding:
        44px 0 85px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.58) 22%,
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #f5f7f9 0%,
            #f1f3f5 55%,
            #ffffff 100%
        );
}


/* ==========================
   DECORACIÓN HERO
========================== */

.centros-decoration {
    position: absolute;

    width: 95px;
    height: 420px;

    top: 150px;
    left: 18%;

    border-radius: 10px;

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

    transform:
        rotate(45deg);

    pointer-events: none;
}


/* ==========================
   CONTENEDOR HERO
========================== */

.centros-hero-container {
    position: relative;
    z-index: 2;

    width:
        min(
            1280px,
            calc(100% - 64px)
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(430px, 0.95fr);

    gap: 70px;

    align-items: center;
}


/* ==========================
   COLUMNA TEXTO
========================== */

.centros-hero-content {
    min-width: 0;
}


/* ==========================
   BREADCRUMB
========================== */

.centros-breadcrumb {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 44px;

    padding:
        10px 17px;

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

    border:
        1px solid rgba(226, 231, 237, 0.75);

    border-radius:
        999px;

    color:
        var(--color-muted);

    font-size: 14px;

    box-shadow:
        0 6px 18px rgba(25, 35, 52, 0.04);
}

.centros-breadcrumb a {
    color:
        var(--color-heading);

    transition:
        color 0.2s ease;
}

.centros-breadcrumb a:hover {
    color:
        var(--color-primary);
}


/* ==========================
   KICKER
========================== */

.centros-kicker {
    display: block;

    margin-bottom: 12px;

    color:
        var(--color-primary);

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

    letter-spacing: 0.35px;
}


/* ==========================
   TÍTULO HERO
========================== */

.centros-hero-content h1 {
    max-width: 690px;

    color:
        #111821;

    font-size:
        clamp(4px, 5vw, 50px);

    line-height: 0.99;

    font-weight: 800;

    letter-spacing: -2.8px;
}

.centros-hero-content h1 span {
    display: block;

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


/* ==========================
   LÍNEA TÍTULO
========================== */

.centros-title-line {
    width: 74px;
    height: 4px;

    margin-top: 24px;

    background:
        var(--color-primary);

    border-radius:
        10px;
}


/* ==========================
   TEXTO HERO
========================== */

.centros-intro {
    max-width: 700px;

    margin-top: 30px;
}

.centros-intro p {
    margin-bottom: 18px;

    color:
        #27303d;

    font-size: 16px;
    line-height: 1.62;
}

.centros-intro p:last-child {
    margin-bottom: 0;
}

.centros-intro-highlight {
    font-weight: 700;

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


/* ==========================
   BOTONES HERO
========================== */

.centros-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.centros-button {
    min-height: 48px;

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

    padding:
        0 20px;

    border-radius:
        10px;

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

    white-space: nowrap;

    transition:
        transform 0.20s ease,
        box-shadow 0.20s ease,
        background 0.20s ease,
        color 0.20s ease,
        border-color 0.20s ease;
}

.centros-button-primary {
    color:
        #ffffff;

    background:
        var(--gradient-brand);

    border:
        1px solid transparent;
}

.centros-button-primary:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px rgba(233, 52, 44, 0.20);
}

.centros-button-secondary {
    color:
        var(--color-heading);

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

    border:
        1px solid #dce1e7;
}

.centros-button-secondary:hover {
    transform:
        translateY(-2px);

    color:
        var(--color-primary);

    border-color:
        rgba(240, 0, 0, 0.20);

    background:
        #ffffff;

    box-shadow:
        0 8px 20px rgba(25, 35, 52, 0.07);
}


/* ==========================
   IMAGEN HERO
========================== */

.centros-hero-visual {
    width: 100%;
}

.centros-image-wrapper {
    position: relative;

    overflow: hidden;

    width: 100%;

    min-height: 560px;

    border-radius:
        22px;

    background:
        #e9edf1;

    box-shadow:
        0 18px 45px rgba(25, 35, 52, 0.12);
}

.centros-image-wrapper img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 560px;

    object-fit: cover;
}


/* ==========================
   ACENTOS SOBRE LA IMAGEN
========================== */

.centros-image-accent {
    position: absolute;

    right: -100px;
    bottom: -110px;

    height: 130px;

    transform:
        rotate(-45deg);

    transform-origin:
        center;

    pointer-events: none;
}

.centros-image-accent-one {
    width: 520px;

    background:
        rgba(240, 0, 0, 0.84);
}

.centros-image-accent-two {
    width: 440px;

    right: -70px;
    bottom: -70px;

    background:
        rgba(240, 108, 85, 0.78);
}

.centros-image-accent-three {
    width: 360px;

    right: -45px;
    bottom: -30px;

    background:
        rgba(195, 22, 10, 0.88);
}


/* ==========================
   SECCIONES INFERIORES
========================== */

.centros-section {
    position: relative;

    width: 100%;

    padding:
        90px 0;

    scroll-margin-top:
        100px;
}

.centros-section-container {
    width:
        min(
            1210px,
            calc(100% - 64px)
        );

    margin:
        0 auto;
}


/* ==========================
   ALTERNANCIA DE FONDOS
========================== */
/* =========================================================
   CÓMO LO HACEMOS
========================================================= */

.centros-section-como {
    position: relative;

    overflow: hidden;

    padding:
        90px 0 100px;

    background:
        radial-gradient(
            circle at 5% 22%,
            rgba(255, 120, 80, 0.13) 0%,
            rgba(255, 120, 80, 0.05) 17%,
            transparent 34%
        ),
        radial-gradient(
            circle at 93% 78%,
            rgba(239, 81, 68, 0.11) 0%,
            rgba(239, 81, 68, 0.04) 18%,
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf7 52%,
            #ffffff 100%
        );
}


/* =========================================================
   DECORACIONES FONDO
========================================================= */

.como-bg-shape {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}

.como-bg-shape-one {
    width: 350px;
    height: 350px;

    top: 150px;
    left: -180px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 97, 55, 0.15),
            rgba(255, 162, 125, 0.03)
        );
}

.como-bg-shape-two {
    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -130px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 130, 95, 0.13),
            rgba(195, 22, 10, 0.02)
        );
}


/* =========================================================
   PUNTOS DECORATIVOS
========================================================= */

.como-bg-dots {
    position: absolute;

    top: 175px;
    right: 7%;

    display: grid;

    grid-template-columns:
        repeat(6, 5px);

    gap: 16px;

    opacity: 0.65;
}

.como-bg-dots span {
    width: 5px;
    height: 5px;

    display: block;

    border-radius: 50%;

    background:
        #ff7656;
}


/* =========================================================
   CABECERA
========================================================= */

.como-heading {
    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 58px;
}

.como-heading .section-kicker {
    margin-bottom: 8px;
}

.como-heading h2 {
    font-size: 48px;

    line-height: 1;

    letter-spacing: -1.8px;
}

.como-heading .section-title-line {
    margin:
        20px auto 0;
}


/* =========================================================
   INTRODUCCIÓN
========================================================= */

.como-intro {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        230px
        1px
        minmax(0, 1fr);

    gap: 34px;

    align-items: start;

    margin-bottom: 55px;
}


/* =========================================================
   BLOQUE TÍTULO IZQUIERDO
========================================================= */

.como-intro-title {
    padding-top: 4px;
}

.como-intro-title h3 {
    color:
        #172131;

    font-size: 26px;

    line-height: 1.12;

    letter-spacing: -0.8px;

    font-weight: 800;
}

.como-intro-title h3 span {
    display: block;

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


/* =========================================================
   DIVISOR
========================================================= */

.como-intro-divider {
    width: 1px;

    min-height: 260px;

    background:
        linear-gradient(
            180deg,
            rgba(240, 0, 0, 0.85),
            rgba(240, 0, 0, 0.35)
        );
}


/* =========================================================
   TEXTO INTRO
========================================================= */

.como-intro-text {
    max-width: 880px;
}

.como-intro-text p {
    margin-bottom: 18px;

    color:
        #333c49;

    font-size: 16px;

    line-height: 1.65;
}

.como-intro-text h4 {
    margin-top: 24px;

    color:
        var(--color-heading);

    font-size: 27px;

    line-height: 1.18;

    letter-spacing: -0.7px;

    font-weight: 750;
}


/* =========================================================
   PROCESO
========================================================= */

.como-process {
    position: relative;

    z-index: 3;

    display: grid;

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

    gap: 24px;

    padding:
        26px 0 0;
}


/* =========================================================
   ITEM PROCESO
========================================================= */

.como-process-item {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================================
   ICONOS GRANDES
========================================================= */

.como-icon-circle {
    position: relative;

    width: 170px;
    height: 170px;

    display: flex;

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

    margin-bottom: 18px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #fff8f4 0%,
            #fff2ec 70%,
            rgba(255, 242, 236, 0.35) 100%
        );

    box-shadow:
        0 10px 28px rgba(25, 35, 52, 0.05);
}

.como-icon-circle::after {
    content: "";

    position: absolute;

    left: 22%;
    right: 22%;

    bottom: -10px;

    height: 8px;

    border-radius: 50%;

    background:
        rgba(25, 35, 52, 0.08);

    filter:
        blur(3px);
}

.como-icon-circle svg {
    width: 115px;
    height: 115px;
}


/* =========================================================
   SVG
========================================================= */

.como-svg-dark {
    fill: none;

    stroke:
        #202935;

    stroke-width: 3;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.como-svg-red-stroke {
    fill: none;

    stroke:
        #f2392b;

    stroke-width: 3;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.como-svg-red-fill {
    fill:
        #f2392b;
}

.como-svg-white-fill {
    fill:
        #ffffff;
}


/* =========================================================
   SIGNOS +
========================================================= */

.como-plus {
    position: absolute;

    top: 68px;
    right: -27px;

    z-index: 4;

    color:
        var(--color-primary);

    font-size: 52px;

    line-height: 1;

    font-weight: 400;
}

.como-process-item:nth-child(3) .como-plus {
    display: none;
}


/* =========================================================
   TARJETAS
========================================================= */

.como-card {
    position: relative;

    width: 100%;
    min-height: 225px;

    padding:
        42px 28px 28px;

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

    border:
        1px solid #eceff3;

    border-radius:
        18px;

    box-shadow:
        0 12px 32px rgba(25, 35, 52, 0.07);

    text-align: center;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.como-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(240, 0, 0, 0.18);

    box-shadow:
        0 18px 38px rgba(25, 35, 52, 0.11);
}


/* =========================================================
   PASO
========================================================= */

.como-step {
    position: absolute;

    top: 17px;
    left: 50%;

    transform:
        translateX(-50%);

    width: 30px;
    height: 30px;

    display: flex;

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

    border-radius: 50%;

    color:
        #ffffff;

    background:
        var(--gradient-brand);

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 5px 14px rgba(240, 0, 0, 0.18);
}


/* =========================================================
   TÍTULO TARJETAS
========================================================= */

.como-card h3 {
    margin-top: 20px;

    color:
        var(--color-heading);

    font-size: 16px;

    line-height: 1.3;

    font-weight: 800;
}


/* =========================================================
   LÍNEA TARJETA
========================================================= */

.como-card-line {
    width: 44px;
    height: 3px;

    margin:
        13px auto 15px;

    border-radius: 10px;

    background:
        var(--color-primary);
}


/* =========================================================
   TEXTO TARJETAS
========================================================= */

.como-card p {
    color:
        var(--color-text);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .centros-section-como {
        padding:
            70px 0 80px;
    }

    .como-heading {
        margin-bottom:
            45px;
    }

    .como-heading h2 {
        font-size:
            38px;
    }

    .como-intro {
        grid-template-columns:
            1fr;

        gap:
            22px;
    }

    .como-intro-divider {
        display:
            none;
    }

    .como-intro-title h3 {
        font-size:
            23px;
    }

    .como-intro-title h3 span {
        display:
            inline;
    }

    .como-intro-text {
        max-width:
            none;
    }

    .como-process {
        grid-template-columns:
            1fr;

        gap:
            28px;
    }

    .como-process-item {
        max-width:
            560px;

        width:
            100%;

        margin:
            0 auto;
    }

    .como-plus {
        display:
            none;
    }

    .como-card {
        min-height:
            auto;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .centros-section-como {
        padding:
            55px 0 65px;
    }

    .como-bg-shape-one {
        width:
            230px;

        height:
            230px;
    }

    .como-bg-shape-two {
        width:
            280px;

        height:
            280px;
    }

    .como-bg-dots {
        display:
            none;
    }

    .como-heading {
        margin-bottom:
            35px;
    }

    .como-heading h2 {
        font-size:
            31px;

        letter-spacing:
            -1px;
    }

    .como-intro {
        margin-bottom:
            40px;
    }

    .como-intro-title h3 {
        font-size:
            21px;

        line-height:
            1.2;
    }

    .como-intro-text p {
        margin-bottom:
            16px;

        font-size:
            15px;

        line-height:
            1.58;
    }

    .como-intro-text h4 {
        margin-top:
            20px;

        font-size:
            22px;
    }

    .como-icon-circle {
        width:
            145px;

        height:
            145px;
    }

    .como-icon-circle svg {
        width:
            100px;

        height:
            100px;
    }

    .como-card {
        padding:
            42px 22px 24px;
    }

    .como-card h3 {
        font-size:
            15px;
    }

    .como-card p {
        font-size:
            14px;
    }
}


/* ==========================
   KICKER SECCIONES
========================== */

.section-kicker {
    display: block;

    margin-bottom: 10px;

    color:
        var(--color-primary);

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

    letter-spacing: 0.35px;
}


/* ==========================
   TÍTULOS SECCIONES
========================== */

.centros-section h2 {
    color:
        var(--color-heading);

    font-size: 42px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.section-title-line {
    width: 72px;
    height: 4px;

    margin-top: 20px;

    background:
        var(--color-primary);

    border-radius:
        10px;
}


/* ==========================
   PLACEHOLDERS
========================== */

.section-placeholder {
    min-height: 240px;

    margin-top: 40px;

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

    padding:
        40px;

    border:
        1px dashed #d9dee5;

    border-radius:
        18px;

    color:
        var(--color-muted);

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

    font-size: 15px;

    text-align: center;
}


/* ==========================
   RESPONSIVE HEADER
========================== */

@media (max-width: 1050px) {

    .header-container {
        padding:
            0 24px;
    }

    .nav {
        gap: 24px;

        margin-left: 24px;
        margin-right: 24px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo img {
        width: 64px;
        height: 64px;
    }

    .logo-text {
        font-size: 22px;
    }


    .centros-hero-container {
        gap: 46px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);
    }

    .centros-image-wrapper,
    .centros-image-wrapper img {
        min-height: 500px;
    }

    .centros-intro p {
        font-size: 15px;
    }
}


/* ==========================
   TABLET
========================== */

@media (max-width: 850px) {

    .header-container {
        height: 72px;

        padding:
            0 20px;
    }

    .nav {
        display: none;
    }

    .info-button {
        display: none;
    }

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

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 18px;
    }


    .centros-hero {
        min-height:
            calc(100vh - 72px);

        padding:
            34px 0 70px;
    }

    .centros-hero-container {
        width:
            calc(100% - 40px);

        grid-template-columns:
            1fr;

        gap: 44px;
    }

    .centros-decoration {
        left: 5%;

        opacity: 0.45;
    }

    .centros-breadcrumb {
        margin-bottom: 34px;
    }

    .centros-hero-content h1 {
        max-width: 650px;

        font-size: 54px;
    }

    .centros-intro {
        max-width: none;
    }

    .centros-image-wrapper,
    .centros-image-wrapper img {
        min-height: 430px;
    }


    .centros-section {
        padding:
            70px 0;
    }

    .centros-section-container {
        width:
            calc(100% - 40px);
    }

    .centros-section h2 {
        font-size: 36px;
    }
}


/* ==========================
   MÓVIL
========================== */

@media (max-width: 600px) {

    .centros-hero {
        padding:
            24px 0 55px;
    }

    .centros-hero-container {
        width:
            calc(100% - 30px);

        gap: 34px;
    }

    .centros-decoration {
        width: 60px;
        height: 260px;

        top: 170px;
        left: -35px;

        opacity: 0.38;
    }

    .centros-breadcrumb {
        margin-bottom: 28px;

        padding:
            9px 14px;

        font-size: 13px;
    }

    .centros-kicker {
        font-size: 13px;
    }

    .centros-hero-content h1 {
        font-size: 41px;

        letter-spacing: -1.8px;
    }

    .centros-title-line {
        margin-top: 18px;
    }

    .centros-intro {
        margin-top: 24px;
    }

    .centros-intro p {
        margin-bottom: 16px;

        font-size: 15px;
        line-height: 1.58;
    }


    /* Botones uno debajo de otro */
    .centros-actions {
        display: grid;

        grid-template-columns:
            1fr;

        gap: 10px;

        margin-top: 28px;
    }

    .centros-button {
        width: 100%;

        min-height: 48px;

        padding:
            0 18px;
    }


    /* Imagen */
    .centros-image-wrapper,
    .centros-image-wrapper img {
        min-height: 320px;
    }

    .centros-image-wrapper {
        border-radius:
            16px;
    }

    .centros-image-accent-one {
        width: 380px;
    }

    .centros-image-accent-two {
        width: 320px;
    }

    .centros-image-accent-three {
        width: 260px;
    }


    /* Secciones */
    .centros-section {
        padding:
            55px 0;
    }

    .centros-section-container {
        width:
            calc(100% - 30px);
    }

    .section-kicker {
        font-size: 13px;
    }

    .centros-section h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }

    .section-title-line {
        margin-top: 16px;
    }

    .section-placeholder {
        min-height: 180px;

        margin-top: 30px;

        padding:
            25px 18px;
    }
}


/* ==========================
   MÓVIL PEQUEÑO
========================== */

@media (max-width: 480px) {

    .header-container {
        padding:
            0 14px;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-com {
        font-size: 0.72em;
    }

    .centros-hero-content h1 {
        font-size: 36px;
    }
}
/* =========================================================
   ALTA DE INSTITUCIONES
========================================================= */

.centros-section-alta {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 85%,
            rgba(255, 116, 77, 0.11) 0%,
            rgba(255, 116, 77, 0.04) 18%,
            transparent 36%
        ),
        radial-gradient(
            circle at 96% 15%,
            rgba(240, 0, 0, 0.07) 0%,
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #fffaf7 0%,
            #fff8f4 100%
        );
}


/* =========================================================
   PANEL PRINCIPAL
========================================================= */

.alta-panel {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        1px
        minmax(0, 1.08fr);

    gap: 36px;

    align-items: stretch;

    margin-top: 46px;

    padding:
        28px;

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

    border:
        1px dashed #d5dce4;

    border-radius:
        20px;

    box-shadow:
        0 12px 34px rgba(25, 35, 52, 0.05);
}


/* =========================================================
   COLUMNA FORMULARIO
========================================================= */

.alta-form-column {
    min-width: 0;
}

.alta-form {
    width: 100%;
}


/* =========================================================
   CABECERA FORMULARIO
========================================================= */

.alta-form-heading {
    margin-bottom: 18px;
}

.alta-form-heading span {
    display: block;

    margin-bottom: 4px;

    color:
        var(--color-primary);

    font-size: 13px;
    font-weight: 700;
}

.alta-form-heading h3 {
    color:
        var(--color-heading);

    font-size: 25px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.7px;
}


/* =========================================================
   CAMPOS
========================================================= */

.alta-field {
    margin-bottom: 10px;
}

.alta-field label {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip:
        rect(0 0 0 0);

    white-space: nowrap;
}

.alta-field input,
.alta-field textarea {
    width: 100%;

    border:
        1px solid #d9dee5;

    border-radius:
        11px;

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

    color:
        var(--color-heading);

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.alta-field input {
    height: 44px;

    padding:
        0 15px;
}

.alta-field textarea {
    height: 100px;
    min-height: 100px;

    padding:
        12px 15px;

    resize: vertical;
}

.alta-field input::placeholder,
.alta-field textarea::placeholder {
    color:
        #929aa6;

    font-weight: 600;
}

.alta-field input:focus,
.alta-field textarea:focus {
    border-color:
        rgba(240, 0, 0, 0.40);

    background:
        #ffffff;

    box-shadow:
        0 0 0 3px rgba(240, 0, 0, 0.06);
}


/* =========================================================
   CAPTCHA
========================================================= */

.alta-captcha {
    display: flex;
    justify-content: center;

    margin:
        16px 0;
}

.alta-captcha-placeholder {
    width: 230px;
    min-height: 58px;

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

    border:
        1px solid #d9dde3;

    border-radius:
        8px;

    background:
        #fafafa;

    color:
        #777f89;

    font-size: 13px;
}


/* =========================================================
   BOTÓN ENVIAR
========================================================= */

.alta-submit {
    width: 100%;

    min-height: 46px;

    border: 0;

    border-radius:
        10px;

    background:
        var(--gradient-brand);

    color:
        #ffffff;

    cursor: pointer;

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

    letter-spacing: 0.35px;

    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.alta-submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px rgba(230, 46, 32, 0.18);
}


/* =========================================================
   DIVISOR
========================================================= */

.alta-divider {
    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(240, 0, 0, 0.12) 12%,
            rgba(240, 0, 0, 0.16) 50%,
            rgba(240, 0, 0, 0.12) 88%,
            transparent 100%
        );
}


/* =========================================================
   BENEFICIOS
========================================================= */

.alta-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        0 30px;
}


/* =========================================================
   BENEFICIO INDIVIDUAL
========================================================= */

.alta-benefit {
    position: relative;

    min-height: 230px;

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

    padding:
        24px 20px;

    text-align: center;
}


/* Línea horizontal entre las dos filas */
.alta-benefit:nth-child(1),
.alta-benefit:nth-child(2) {
    border-bottom:
        1px solid #edf0f3;
}


/* =========================================================
   ICONOS
========================================================= */

.alta-benefit-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 16px;

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

    color:
        #ef4d38;
}

.alta-benefit-icon svg {
    width: 52px;
    height: 52px;
}


/* =========================================================
   TEXTO BENEFICIOS
========================================================= */

.alta-benefit h3 {
    margin-bottom: 10px;

    color:
        var(--color-heading);

    font-size: 18px;

    line-height: 1.2;

    font-weight: 800;
}

.alta-benefit p {
    max-width: 250px;

    color:
        var(--color-text);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .alta-panel {
        grid-template-columns:
            1fr;

        gap: 36px;

        padding:
            24px;
    }

    .alta-divider {
        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(240, 0, 0, 0.16),
                transparent
            );
    }

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

    .alta-benefit {
        min-height: 210px;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .alta-panel {
        margin-top:
            34px;

        padding:
            18px;

        border-radius:
            16px;
    }

    .alta-form-heading h3 {
        font-size:
            22px;
    }

    .alta-benefits {
        grid-template-columns:
            1fr;

        gap:
            0;
    }

    .alta-benefit {
        min-height:
            auto;

        padding:
            28px 12px;
    }

    .alta-benefit:nth-child(1),
    .alta-benefit:nth-child(2),
    .alta-benefit:nth-child(3) {
        border-bottom:
            1px solid #edf0f3;
    }

    .alta-benefit-icon {
        width:
            52px;

        height:
            52px;

        margin-bottom:
            13px;
    }

    .alta-benefit-icon svg {
        width:
            46px;

        height:
            46px;
    }

    .alta-benefit p {
        font-size:
            20px;
    }

}
/* =========================================================
   ACCESO CENTROS
========================================================= */

.centros-section-acceso {
    position: relative;

    overflow: hidden;

    padding:
        105px 0;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(255, 108, 73, 0.16) 0%,
            rgba(255, 108, 73, 0.08) 16%,
            transparent 32%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(239, 81, 68, 0.13) 0%,
            rgba(239, 81, 68, 0.05) 18%,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #ffffff 55%,
            #fff9f6 100%
        );
}


/* =========================================================
   DECORACIONES
========================================================= */

.acceso-shape {
    position: absolute;

    pointer-events: none;
}

.acceso-shape-one {
    width: 290px;
    height: 290px;

    top: -150px;
    left: -110px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 102, 69, 0.25),
            rgba(255, 157, 123, 0.08)
        );
}

.acceso-shape-two {
    width: 390px;
    height: 390px;

    right: -190px;
    bottom: -210px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(240, 73, 55, 0.16),
            rgba(255, 165, 130, 0.04)
        );
}

.acceso-shape-three {
    width: 80px;
    height: 380px;

    top: -90px;
    right: 12%;

    border-radius: 10px;

    background:
        rgba(255, 112, 79, 0.06);

    transform:
        rotate(-60deg);
}


/* =========================================================
   PUNTOS
========================================================= */

.acceso-dots {
    position: absolute;

    left: 4%;
    bottom: 8%;

    display: grid;

    grid-template-columns:
        repeat(5, 4px);

    gap: 13px;

    opacity: 0.5;
}

.acceso-dots span {
    display: block;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        #ff7454;
}


/* =========================================================
   LAYOUT
========================================================= */

.acceso-layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 0.85fr);

    gap: 95px;

    align-items: center;
}


/* =========================================================
   CONTENIDO IZQUIERDA
========================================================= */

.acceso-content {
    max-width: 540px;
}

.acceso-content h2 {
    font-size: 48px;

    line-height: 1;

    letter-spacing: -1.8px;
}

.acceso-description {
    max-width: 470px;

    margin-top: 32px;

    color:
        #2c3542;

    font-size: 17px;

    line-height: 1.55;
}


/* =========================================================
   BENEFICIOS
========================================================= */

.acceso-benefits {
    margin-top: 30px;

    display: grid;

    gap: 14px;
}

.acceso-benefit {
    display: flex;

    align-items: center;

    gap: 13px;

    color:
        var(--color-heading);

    font-size: 15px;

    font-weight: 600;
}

.acceso-check {
    flex:
        0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    color:
        var(--color-primary);

    background:
        rgba(255, 94, 63, 0.10);

    font-size: 18px;

    font-weight: 700;
}


/* =========================================================
   TARJETA LOGIN
========================================================= */

.acceso-card {
    position: relative;

    width: 100%;
    max-width: 470px;

    margin-left: auto;

    padding:
        38px 34px 30px;

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

    border:
        1px solid #eceff3;

    border-radius:
        24px;

    box-shadow:
        0 18px 45px rgba(25, 35, 52, 0.10);

    text-align: center;
}


/* =========================================================
   CANDADO
========================================================= */

.acceso-lock {
    width: 78px;
    height: 78px;

    margin:
        0 auto 20px;

    display: flex;

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

    border-radius: 50%;

    color:
        var(--color-primary);

    background:
        linear-gradient(
            145deg,
            #fff5f1,
            #ffe7df
        );
}

.acceso-lock svg {
    width: 42px;
    height: 42px;
}


/* =========================================================
   CABECERA LOGIN
========================================================= */

.acceso-card-heading {
    margin-bottom: 26px;
}

.acceso-card-heading h3 {
    color:
        var(--color-heading);

    font-size: 27px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.7px;
}

.acceso-card-heading p {
    margin-top: 7px;

    color:
        var(--color-muted);

    font-size: 14px;
}


/* =========================================================
   CAMPOS LOGIN
========================================================= */

.acceso-field {
    margin-bottom: 13px;
}

.acceso-field label {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip:
        rect(0 0 0 0);

    white-space: nowrap;
}

.acceso-input-wrapper {
    position: relative;
}

.acceso-input-wrapper input {
    width: 100%;
    height: 54px;

    padding:
        0 50px;

    border:
        1px solid #d9dee5;

    border-radius:
        12px;

    background:
        #ffffff;

    color:
        var(--color-heading);

    outline: none;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.acceso-input-wrapper input::placeholder {
    color:
        #8f98a6;

    font-weight: 600;
}

.acceso-input-wrapper input:focus {
    border-color:
        rgba(240, 0, 0, 0.42);

    background:
        #fffdfc;

    box-shadow:
        0 0 0 3px rgba(240, 0, 0, 0.06);
}


/* =========================================================
   ICONOS INPUT
========================================================= */

.acceso-input-icon {
    position: absolute;

    left: 16px;
    top: 50%;

    transform:
        translateY(-50%);

    width: 22px;
    height: 22px;

    color:
        #7e8999;

    pointer-events: none;
}

.acceso-input-icon svg {
    width: 22px;
    height: 22px;
}


/* =========================================================
   VER PASSWORD
========================================================= */

.acceso-show-password {
    position: absolute;

    right: 14px;
    top: 50%;

    transform:
        translateY(-50%);

    width: 30px;
    height: 30px;

    display: flex;

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

    border: 0;

    background:
        transparent;

    color:
        #8792a1;

    cursor: pointer;
}

.acceso-show-password svg {
    width: 23px;
    height: 23px;
}


/* =========================================================
   BOTÓN ENVIAR
========================================================= */

.acceso-submit {
    width: 100%;

    min-height: 50px;

    margin-top: 10px;

    border: 0;

    border-radius:
        10px;

    background:
        var(--gradient-brand);

    color:
        #ffffff;

    cursor: pointer;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.35px;

    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.acceso-submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 11px 26px rgba(230, 46, 32, 0.20);
}


/* =========================================================
   OLVIDÉ DATOS
========================================================= */

.acceso-forgot {
    display: inline-block;

    margin-top: 22px;

    color:
        var(--color-muted);

    font-size: 13px;

    text-decoration: underline;

    transition:
        color 0.2s ease;
}

.acceso-forgot:hover {
    color:
        var(--color-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .centros-section-acceso {
        padding:
            75px 0;
    }

    .acceso-layout {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .acceso-content {
        max-width:
            none;
    }

    .acceso-content h2 {
        font-size:
            38px;
    }

    .acceso-card {
        max-width:
            560px;

        margin:
            0 auto;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .centros-section-acceso {
        padding:
            58px 0 65px;
    }

    .acceso-shape-one {
        width:
            220px;

        height:
            220px;
    }

    .acceso-shape-two {
        width:
            270px;

        height:
            270px;
    }

    .acceso-shape-three,
    .acceso-dots {
        display:
            none;
    }

    .acceso-content h2 {
        font-size:
            31px;

        letter-spacing:
            -1px;
    }

    .acceso-description {
        margin-top:
            24px;

        font-size:
            15px;
    }

    .acceso-benefits {
        margin-top:
            24px;
    }

    .acceso-benefit {
        font-size:
            14px;
    }

    .acceso-check {
        flex-basis:
            31px;

        width:
            31px;

        height:
            31px;
    }

    .acceso-card {
        padding:
            28px 20px 24px;

        border-radius:
            18px;
    }

    .acceso-lock {
        width:
            66px;

        height:
            66px;

        margin-bottom:
            16px;
    }

    .acceso-lock svg {
        width:
            36px;

        height:
            36px;
    }

    .acceso-card-heading h3 {
        font-size:
            24px;
    }

    .acceso-input-wrapper input {
        height:
            50px;
    }

    .acceso-submit {
        min-height:
            48px;
    }
}

/* extras: recaptcha real, éxito/error, pie home-cyp y chrome legacy */

.alta-captcha .g-recaptcha {
    display: inline-block;
}

.alta-captcha {
    min-height: 78px;
}

.alta-error {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff4f2;
    color: #c3160a;
    font-size: 14px;
    font-weight: 600;
}

.alta-success {
    text-align: center;
    padding-top: 28px;
    padding-bottom: 28px;
}

.alta-success p {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.55;
    margin-top: 8px;
}

.acceso-recordar {
    margin-top: 16px;
    text-align: left;
}

.acceso-recordar p {
    margin: 0;
}

.acceso-recordar input[type="text"],
.acceso-recordar input.form-control {
    width: 100%;
    min-height: 48px;
    margin: 0 0 12px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    color: var(--color-heading);
    font-size: 15px;
}

.acceso-recordar button,
.acceso-recordar .btn {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--gradient-brand);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.acceso-recordar a.button {
    display: block;
    text-decoration: none;
}

body.alta-centros-page-new #header,
body.alta-centros-page-new .navbar,
body.alta-centros-page-new footer.piecyp,
body.alta-centros-page-new .piecyp,
body.alta-centros-page-new .footer-copy.xsmall {
    display: none !important;
}

.site-footer {
    width: 100%;
    overflow: hidden;
}
.footer-main {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: rgb(5, 19, 45);
}
.footer-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 36%;
    height: 100%;
    background: rgba(6, 39, 83, 0.32);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 80px 70px 75px;
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.95fr;
    gap: 110px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-column h3,
.footer-contact h3 {
    margin: 0 0 24px;
    color: var(--color-white);
    font-size: 21px;
    font-weight: 800;
}
.footer-column a {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 500;
    transition: transform .18s ease, opacity .18s ease;
}
.footer-column a:hover {
    opacity: 0.78;
    transform: translateX(4px);
}
.footer-subtitle {
    margin: 18px 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-brand {
    margin-bottom: 30px;
    color: var(--color-white);
    font-size: 29px;
    letter-spacing: -1px;
}
.footer-brand strong {
    font-weight: 800;
}
.footer-phone {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.8px;
    transition: transform .18s ease, opacity .18s ease;
}
.footer-phone:hover {
    opacity: 0.82;
    transform: translateX(3px);
}
.footer-email {
    display: inline-block;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 650;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-socials a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 21px;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.footer-socials a:hover {
    color: var(--color-primary-light);
    background: var(--color-white);
    transform: translateY(-3px);
}
.footer-bottom {
    min-height: 78px;
    padding: 20px 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 35px;
    background: var(--color-white);
    border-top: 1px solid #eeeeee;
}
.footer-bottom-logo {
    color: var(--color-heading);
    font-size: 18px;
}
.footer-bottom-logo strong {
    font-weight: 800;
}
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.footer-legal a {
    color: #697386;
    font-size: 13px;
    font-weight: 500;
    transition: color .18s ease;
}
.footer-legal a:hover {
    color: #ef4938;
}
body.alta-centros-page-new .site-footer .footer-copy {
    color: #697386;
    font-size: 13px;
    text-align: right;
    display: block !important;
}
@media (max-width: 1000px) {
    .footer-content {
        gap: 55px;
        padding: 70px 45px;
    }
}
@media (max-width: 760px) {
    .footer-main {
        min-height: auto;
    }
    .footer-shape {
        width: 100%;
        height: 330px;
        opacity: 0.55;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 25px;
    }
    .footer-contact {
        padding-top: 15px;
    }
    .footer-phone {
        font-size: 27px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        padding: 28px 25px;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-logo,
    body.alta-centros-page-new .site-footer .footer-copy {
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}
