:root {
    --seo-verde: #0b2f23;
    --seo-verde-medio: #208050;
    --seo-verde-suave: #edf6f1;
    --seo-texto: #12382b;
    --seo-muted: #697a72;
    --seo-linea: #d5e4dc;
    --seo-blanco: #ffffff;
    --seo-acento: #e9634c;
    --seo-sombra: 0 20px 54px rgba(9, 36, 25, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.seo-pagina {
    margin: 0;
    background: #f6faf8;
    color: var(--seo-texto);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

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

.seo-pagina a {
    color: inherit;
}

.seo-contenedor {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.seo-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 86px;
    border-top: 4px solid var(--seo-verde);
    border-bottom: 1px solid rgba(18, 56, 43, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.seo-header .seo-contenedor {
    display: flex;
    height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.seo-logo img {
    width: 134px;
    height: auto;
}

.seo-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.seo-nav a {
    position: relative;
    color: var(--seo-texto);
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

.seo-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--seo-verde-medio);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.seo-nav a:hover::after,
.seo-nav a:focus-visible::after,
.seo-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.seo-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--seo-linea);
    border-radius: 6px;
    background: var(--seo-blanco);
}

.seo-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--seo-texto);
}

.seo-migas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
    color: var(--seo-muted);
    font-size: 0.86rem;
}

.seo-migas a {
    color: var(--seo-verde-medio);
    text-decoration: none;
}

.seo-hero {
    padding: 64px 0 76px;
    background:
        linear-gradient(135deg, rgba(237, 246, 241, 0.98), rgba(255, 255, 255, 0.98)),
        var(--seo-blanco);
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    align-items: center;
    gap: 56px;
}

.seo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--seo-verde-medio);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-eyebrow::before {
    width: 30px;
    height: 2px;
    background: var(--seo-acento);
    content: "";
}

.seo-hero h1 {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--seo-texto);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 3.1rem;
    line-height: 1.04;
}

.seo-hero-copy {
    max-width: 720px;
    margin: 0 0 30px;
    color: var(--seo-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.seo-hero-media {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--seo-linea);
    border-radius: 8px;
    background: var(--seo-blanco);
    box-shadow: var(--seo-sombra);
}

.seo-hero-media::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(32, 128, 80, 0.07), transparent 64%);
    content: "";
}

.seo-hero-media img {
    position: relative;
    width: 88%;
    max-height: 390px;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-hero-media:hover img {
    transform: translateY(-5px) scale(1.025);
}

.seo-brand-panel {
    display: grid;
    min-height: 310px;
    place-items: center;
    padding: 70px;
    border: 1px solid var(--seo-linea);
    border-radius: 8px;
    background: var(--seo-blanco);
    box-shadow: var(--seo-sombra);
}

.seo-brand-panel img {
    width: min(330px, 85%);
    max-height: 130px;
    object-fit: contain;
}

.seo-brand-text-logo {
    color: var(--seo-verde-medio);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
}

.seo-modelo {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid #bcdccc;
    border-radius: 6px;
    background: #f3faf6;
    color: var(--seo-verde-medio);
    font-size: 0.83rem;
    font-weight: 800;
}

.seo-status,
.seo-card-status {
    display: inline-flex;
    width: fit-content;
    border: 1px solid #d9a94e;
    border-radius: 999px;
    background: #fffaf0;
    color: #76500b;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.seo-status {
    margin: 0 10px 20px 0;
    padding: 7px 11px;
}

.seo-card-status {
    margin-top: 8px;
    padding: 5px 9px;
}

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

.seo-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--seo-verde);
    border-radius: 6px;
    background: var(--seo-verde);
    color: var(--seo-blanco) !important;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.seo-btn:hover,
.seo-btn:focus-visible {
    background: var(--seo-verde-medio);
    transform: translateY(-2px);
}

.seo-btn-secundario {
    background: transparent;
    color: var(--seo-verde) !important;
}

.seo-btn-secundario:hover,
.seo-btn-secundario:focus-visible {
    color: var(--seo-blanco) !important;
}

.seo-section {
    padding: 88px 0;
}

.seo-section-blanca {
    background: var(--seo-blanco);
}

.seo-section h2 {
    max-width: 820px;
    margin: 0 0 18px;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 2.85rem;
    line-height: 1.12;
}

.seo-intro {
    max-width: 780px;
    margin: 0 0 42px;
    color: var(--seo-muted);
    font-size: 1.03rem;
}

.seo-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 42px 0 0;
    border-top: 1px solid var(--seo-linea);
    border-left: 1px solid var(--seo-linea);
}

.seo-highlight {
    min-height: 160px;
    padding: 30px;
    border-right: 1px solid var(--seo-linea);
    border-bottom: 1px solid var(--seo-linea);
    background: rgba(255, 255, 255, 0.76);
}

.seo-highlight::before {
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--seo-acento);
    content: "";
}

.seo-highlight h3 {
    margin: 0 0 8px;
    font-size: 1.04rem;
}

.seo-highlight p {
    margin: 0;
    color: var(--seo-muted);
    font-size: 0.94rem;
}

.seo-highlight-compacto {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    justify-content: center;
}

.seo-highlight-compacto::before {
    margin-bottom: 14px;
}

.seo-highlight-compacto h3 {
    margin-bottom: 0;
}

.seo-text-link {
    display: inline-flex;
    margin-top: -18px;
    border-bottom: 1px solid rgba(32, 128, 80, 0.35);
    color: var(--seo-verde-medio);
    font-weight: 800;
    text-decoration: none;
}

.seo-text-link:hover,
.seo-text-link:focus-visible {
    border-color: currentColor;
    color: var(--seo-verde);
    outline: none;
}

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

.seo-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--seo-linea);
    border-radius: 8px;
    background: var(--seo-blanco);
    box-shadow: 0 14px 38px rgba(9, 36, 25, 0.055);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seo-card:hover {
    border-color: #add3c0;
    box-shadow: 0 20px 48px rgba(9, 36, 25, 0.1);
    transform: translateY(-5px);
}

.seo-card-media {
    display: flex;
    height: 260px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    border-bottom: 1px solid var(--seo-linea);
    background: #f8fbf9;
}

.seo-card-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.seo-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.seo-card-kicker {
    margin-bottom: 12px;
    color: var(--seo-verde-medio);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.seo-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    line-height: 1.35;
}

.seo-card p {
    margin: 0 0 24px;
    color: var(--seo-muted);
    font-size: 0.93rem;
}

.seo-card a {
    margin-top: auto;
    color: var(--seo-verde-medio);
    font-weight: 800;
    text-decoration: none;
}

.seo-scope {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    padding: 0;
    list-style: none;
}

.seo-scope li {
    position: relative;
    padding: 16px 18px 16px 42px;
    border: 1px solid var(--seo-linea);
    border-radius: 6px;
    background: var(--seo-blanco);
    font-weight: 700;
}

.seo-scope li::before {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--seo-verde-medio);
    content: "";
    transform: translateY(-50%);
}

.seo-note {
    margin-top: 36px;
    padding: 22px 24px;
    border-left: 3px solid var(--seo-acento);
    background: #f7faf8;
    color: var(--seo-muted);
    font-size: 0.91rem;
}

.seo-cta {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: var(--seo-verde);
    color: var(--seo-blanco);
}

.seo-cta .seo-contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.seo-cta h2 {
    margin: 0 0 12px;
    color: var(--seo-blanco);
    font-size: 2.55rem;
}

.seo-cta p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.seo-cta .seo-btn {
    flex: 0 0 auto;
    border-color: var(--seo-blanco);
    background: var(--seo-blanco);
    color: var(--seo-verde) !important;
}

.seo-footer {
    padding: 58px 0 26px;
    background: #082a1f;
    color: var(--seo-blanco);
}

.seo-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 1fr;
    gap: 60px;
    padding-bottom: 42px;
}

.seo-footer-logo img {
    width: 130px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.seo-footer p,
.seo-footer a,
.seo-footer span {
    color: rgba(255, 255, 255, 0.7);
}

.seo-footer h3 {
    margin: 0 0 18px;
    color: var(--seo-blanco);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-footer-links {
    display: grid;
    gap: 10px;
}

.seo-footer a {
    text-decoration: none;
}

.seo-footer a:hover,
.seo-footer a:focus-visible {
    color: var(--seo-blanco);
}

.seo-footer-contacto {
    display: grid;
    gap: 11px;
}

.seo-footer-base {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
}

.seo-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 35;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: #19ce66;
    box-shadow: 0 14px 34px rgba(9, 36, 25, 0.22);
}

.seo-whatsapp svg {
    width: 29px;
    fill: var(--seo-blanco);
}

.seo-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .seo-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .seo-menu-toggle {
        display: block;
    }

    .seo-nav {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px 24px 26px;
        border-bottom: 1px solid var(--seo-linea);
        background: var(--seo-blanco);
        box-shadow: 0 18px 32px rgba(9, 36, 25, 0.1);
    }

    .seo-nav.abierto {
        display: grid;
        gap: 18px;
    }

    .seo-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .seo-hero-media {
        min-height: 380px;
    }

    .seo-highlights,
    .seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-cta .seo-contenedor {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 620px) {
    .seo-contenedor {
        width: min(100% - 30px, 1180px);
    }

    .seo-header,
    .seo-header .seo-contenedor {
        height: 76px;
    }

    .seo-logo img {
        width: 112px;
    }

    .seo-nav {
        top: 72px;
    }

    .seo-hero {
        padding: 44px 0 56px;
    }

    .seo-hero h1 {
        font-size: 2.38rem;
    }

    .seo-hero-media {
        min-height: 310px;
    }

    .seo-brand-panel {
        min-height: 240px;
        padding: 40px;
    }

    .seo-section {
        padding: 64px 0;
    }

    .seo-highlights,
    .seo-grid,
    .seo-scope,
    .seo-footer-grid {
        grid-template-columns: 1fr;
    }

    .seo-card-media {
        height: 245px;
    }

    .seo-footer-grid {
        gap: 36px;
    }

    .seo-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/* Refinamiento clinico: continuidad visual con el sitio principal. */
body.seo-pagina {
    --seo-linea: #e0eae4;
    --seo-sombra: 0 14px 38px rgba(9, 36, 25, 0.06);
    background: #f9fcfa;
}

.seo-header {
    height: 65px;
    border-top: 0;
    border-bottom-color: rgba(18, 56, 43, 0.075);
    background: rgba(252, 254, 253, 0.95);
    backdrop-filter: blur(18px);
}

.seo-header .seo-contenedor {
    height: 64px;
}

.seo-logo img {
    width: 102px;
}

.seo-nav {
    gap: 18px;
}

.seo-nav a {
    font-size: 0.91rem;
    font-weight: 600;
}

.seo-hero {
    background: linear-gradient(135deg, #f3f8f5 0%, #fbfdfc 56%, #ffffff 100%);
}

.seo-hero-media,
.seo-brand-panel {
    border-color: #e1ebe5;
    box-shadow: 0 14px 38px rgba(9, 36, 25, 0.055);
}

.seo-hero-media img {
    transition-duration: 0.65s;
}

.seo-hero-media:hover img {
    transform: translateY(-3px) scale(1.015);
}

.seo-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

.seo-btn:hover,
.seo-btn:focus-visible {
    transform: translateY(-1px);
}

.seo-card {
    border-color: #e1eae5;
    box-shadow: 0 8px 25px rgba(9, 36, 25, 0.035);
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.28s ease;
}

.seo-card:hover {
    border-color: rgba(32, 128, 80, 0.3);
    box-shadow: 0 14px 34px rgba(9, 36, 25, 0.07);
    transform: translateY(-2px);
}

.seo-card-media {
    border-bottom-color: #e8efeb;
    background: #fbfdfc;
}

.seo-card-body {
    padding: 28px;
}

.seo-highlight,
.seo-scope li {
    border-color: #e1ebe5;
    background: rgba(255, 255, 255, 0.88);
}

.seo-reveal {
    transform: translateY(14px);
    transition-duration: 0.58s;
}

@media (max-width: 620px) {
    .seo-header,
    .seo-header .seo-contenedor {
        height: 58px;
    }

    .seo-logo img {
        width: 98px;
    }

    .seo-nav {
        top: 58px;
    }

    .seo-hero h1 {
        font-size: 2.22rem;
    }
}

/* Direccion de arte 2026: precision clinica, aire y jerarquia editorial. */
body.seo-pagina {
    background: #fafcfb;
}

.seo-hero {
    padding: 76px 0 96px;
    background: #f5f8f6;
}

.seo-hero-grid {
    gap: 72px;
}

.seo-eyebrow {
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.075em;
}

.seo-eyebrow::before {
    width: 22px;
    height: 1px;
}

.seo-hero h1,
.seo-section h2,
.seo-cta h2 {
    font-weight: 600;
    letter-spacing: 0;
}

.seo-hero h1 {
    max-width: 740px;
    margin-bottom: 22px;
    font-size: clamp(2.75rem, 5vw, 4.35rem);
    line-height: 1.02;
}

.seo-hero-copy {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.seo-hero-media {
    min-height: 470px;
    padding: 34px;
    overflow: visible;
    border: 0;
    border-radius: 6px;
    background: #f5f8f6;
    box-shadow: none;
}

.seo-hero-media::before {
    display: none;
}

.seo-hero-media img {
    width: 94%;
    max-height: 425px;
    filter: drop-shadow(0 16px 20px rgba(9, 36, 25, 0.09));
}

.seo-hero-media:hover img {
    transform: translateY(-2px) scale(1.01);
}

.seo-producto .seo-hero-media img {
    transform: scale(1.28);
}

.seo-producto .seo-hero-media:hover img {
    transform: translateY(-2px) scale(1.3);
}

/* Las fotos con fondo blanco se integran al panel sin alterar el equipo. */
.seo-producto .seo-media-blend-white img {
    mix-blend-mode: multiply;
}

.seo-producto .seo-media-photo {
    background: #ffffff;
}

.seo-producto .seo-media-photo img {
    width: min(88%, 640px);
    max-height: 410px;
    border-radius: 4px;
    filter: none;
    transform: none;
}

.seo-producto .seo-media-photo:hover img {
    transform: translateY(-2px) scale(1.01);
}

/* Evita ampliar archivos cuyo original no alcanza el tamano del panel. */
.seo-producto .seo-media-compact img {
    width: auto;
    max-width: 78%;
    transform: none;
}

.seo-producto .seo-media-compact:hover img {
    transform: translateY(-2px) scale(1.01);
}

.seo-producto .seo-media-balanced img {
    width: auto;
    max-width: 88%;
    transform: none;
}

.seo-producto .seo-media-balanced:hover img {
    transform: translateY(-2px) scale(1.01);
}

.seo-brand-panel {
    border-color: #e1ebe5;
    border-radius: 6px;
    box-shadow: none;
}

.seo-modelo {
    margin-bottom: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--seo-muted);
    font-size: 0.79rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.seo-btn {
    font-weight: 600;
}

.seo-section {
    padding: 108px 0;
}

.seo-section h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
}

.seo-grid {
    gap: 24px;
}

.seo-card {
    border-color: #e1ebe5;
    border-radius: 6px;
    box-shadow: none;
}

.seo-card:hover {
    border-color: rgba(32, 128, 80, 0.3);
    box-shadow: 0 10px 28px rgba(9, 36, 25, 0.055);
    transform: translateY(-1px);
}

.seo-card-media {
    height: 278px;
    padding: 34px;
    border-bottom-color: #e8efeb;
    background: #ffffff;
}

.seo-card-body {
    padding: 28px 28px 30px;
}

.seo-card-kicker,
.seo-card a {
    font-weight: 600;
}

.seo-card h3 {
    font-size: 1.16rem;
    font-weight: 600;
}

.seo-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 46px;
}

.seo-highlight {
    min-height: 150px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.66);
}

.seo-highlight::before {
    width: 18px;
    height: 1px;
    margin-bottom: 18px;
    border-radius: 0;
}

.seo-highlight h3,
.seo-scope li {
    font-weight: 600;
}

.seo-scope li {
    border-color: #e1ebe5;
    border-radius: 5px;
    background: #ffffff;
}

.seo-support-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 34px 0;
    border-top: 1px solid #e1ebe5;
    border-bottom: 1px solid #e1ebe5;
}

.seo-support-band .seo-eyebrow {
    margin-bottom: 10px;
}

.seo-support-band h2 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.seo-support-band p {
    margin: 0;
    color: var(--seo-muted);
}

.seo-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid #e1ebe5;
    border-left: 1px solid #e1ebe5;
}

.seo-compare article {
    min-height: 170px;
    padding: 34px;
    border-right: 1px solid #e1ebe5;
    border-bottom: 1px solid #e1ebe5;
    background: #ffffff;
}

.seo-compare h3 {
    margin: 0 0 10px;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.seo-compare p {
    margin: 0;
    color: var(--seo-muted);
}

.seo-note {
    border-left-width: 1px;
}

.seo-reveal {
    transform: translateY(10px);
}

@media (max-width: 900px) {
    .seo-hero-grid {
        gap: 36px;
    }

    .seo-hero-media {
        min-height: 390px;
    }

    .seo-support-band {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 620px) {
    .seo-hero {
        padding: 48px 0 64px;
    }

    .seo-hero h1 {
        font-size: 2.42rem;
    }

    .seo-hero-media {
        min-height: 300px;
        padding: 18px;
    }

    .seo-producto .seo-hero-media img {
        transform: scale(1.12);
    }

    .seo-producto .seo-hero-media:hover img {
        transform: scale(1.12);
    }

    .seo-producto .seo-media-photo img,
    .seo-producto .seo-media-photo:hover img,
    .seo-producto .seo-media-compact img,
    .seo-producto .seo-media-compact:hover img,
    .seo-producto .seo-media-balanced img,
    .seo-producto .seo-media-balanced:hover img {
        transform: none;
    }

    .seo-section {
        padding: 76px 0;
    }

    .seo-highlights,
    .seo-compare {
        grid-template-columns: 1fr;
    }
}
