.productos .cards .card {
    /* ...otras reglas existentes... */
    text-align: center;
    align-items: center;
}
.productos .cards .card .copy {
    text-align: center;
    width: 100%;
}
html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 70px;
}

@font-face {
    font-family: "arial, helvetica, sans-serif";
    src: url(/assets/fonts/DINCondensed-Regular.eot);
    src: url(/assets/fonts/DINCondensed-Regular.woff) format("woff"), url(/assets/fonts/DINCondensed-Regular.otf) format("opentype"), url(/assets/fonts/DINCondensed-Regular.svg#DINCondensed-Regular) format("svg")
}

body {
    overflow: visible;
    width: auto;
    height: auto;
    position: static;
    text-rendering: optimizeSpeed;
    scroll-behavior: smooth;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;  
    background-image: url(/assets/library/fondo.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

* {
    margin: 0px;
    padding: 0px;
}

h2 {
    padding: 0rem 1rem 1rem 0em;
    font-size: 2.2rem;
    font-family: 'Mulish', sans-serif;
    color: #c69124;
    text-align: center;
}

p {
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-family: 'Mulish', sans-serif;
    padding-top: 1.6rem;
    font-weight: 100;
    color: #ffffff;
}

/* .header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 72px;
    background-color: #202020;
    display: flex;
    font-family: 'Mulish', sans-serif;
    flex: 1 1 1px;
} */

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 72px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | menú flexible | login fijo */
    align-items: center;
    column-gap: 24px;
    background: #202020;
    border-bottom: 2px solid #4b3a15;
    font-family: 'Mulish', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  }

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;                 
    overflow: hidden;             /* evita que invada el bloque de login */
    justify-content: center;
  }


.menu-desktop a {   
position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 1;
    padding: 8px 0 14px;
    opacity: 0.9;
    flex: 0 1 auto;               /* puede encoger antes de empujar el login */
  }

.menu-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #d6a340;        /* ← ESTA ES LA LÍNEA AMARILLA */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;

  }

  .menu-desktop a:hover::after,
  .menu-desktop a.is-active::after {
    transform: scaleX(1);
  }

  .menu-desktop a:hover {
    opacity: 1;
  }

.menu-mobile {
    display: none;
}

.login .btn1,
  .login .btn2 {
    white-space: nowrap;
    line-height: 1;
  }

.login {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    justify-content: align-start;
    margin-right: 5%;
}

.login a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.btn1 {
    background-color: #c69124;
    border-radius: 5px;
    padding: 5px 15px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-family: 'Mulish', sans-serif;
}

.btn1-contacto {
    background-color: #ffff;
    border-radius: 5px;
    padding: 10px 40px;
    text-decoration: none;
    color: #c69124;
    font-size: 22px;
    font-family: 'Mulish', sans-serif;
}

.btn1-lg {
    padding: 10px 40px;
    font-size: 22px;
}

.btn3 {
    border: 1px solid #c69124;
    padding: 0.5rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #c69124;
}

.vr {
    border-left: 2px solid white;
    height: 2.5rem;
    margin: 20px 10px;
}

.banner {
    position: relative;
    width: 100%;
    background-image: url(/assets/library/slide_desktop.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 25%;
    margin-top: 70px;
}


.info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: align-start; */
    flex-wrap: nowrap;
    /* border-top: 3px solid #cf1319;
    border-bottom: 3px solid #cf1319; */
    margin-top: 10rem;
}

.info .register {
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.info .register .btn1 {
    padding: 10px 35px;
}

.info .copy {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 33%;
    justify-content: align-start;
    margin-bottom: 1rem;
}

.info .copy p {
    font-family: 'Mulish', sans-serif;
    font-size: 36px;
    line-height: 2.4rem;
}

.info .copy .p1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 0px;
    margin-bottom: 1rem;
}

.info .copy .p1 .title {
    margin-left: 0rem;
    margin-right: 2rem;
    width: 8.7rem;
    text-align: left;
    font-size: 2.6rem;
}

.info .copy .p1 .percent {
    font-family: arial, helvetica, sans-serif;
    font-size: 8.5rem;
    color: #c69124;
}

.info .copy .p2 p {
    margin-left: 0rem;
    margin-right: 0rem;
    width: 25rem;
    text-align: center;
}

.container {
    margin: 0% 12.5% 0% 12.5%;
    width: 75%;
}

.separator {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.separator-image {
    width: 100%; /* En móviles ocupa casi todo el ancho */
    max-width: 600px; /* En desktop no pasa de 600px (mediano) */
    height: auto; /* Mantiene la proporción */
    display: block;
}

/* Opcional: Si quieres ajustar para tablets */
@media (min-width: 768px) {
    .separator-image {
        width: 80%;
    }
}

/* Opcional: Si quieres un tamaño mínimo en desktop grande */
@media (min-width: 1200px) {
    .separator-image {
        width: 600px; /* Tamaño fijo en pantallas grandes */
    }
}


.sp-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.sp-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.sp-3 {
    margin-top: 3rem;
}

.sp-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.sp-5 {
    margin-bottom: 4rem;
}

.separator .arrow {
    background-image: url(/assets/library/bloque40.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 80px;
    height: 48px;
}

.moreinfo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}


.moreinfo .title {
    margin-bottom: 4rem;
}

.moreinfo .title p {
    font-size: 2.2rem;
    font-family: 'Mulish', sans-serif;
    font-weight: bold;
}

.moreinfo .cards,
.comofunciona .cards {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.moreinfo .card {
    width: 25%;
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.comofunciona .card {
    width: 33%;
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.moreinfo .card .icon,
.comofunciona .card .icon {
    width: 100px;
    height: 100px;
}

.moreinfo .card .icon.arrow-comision {
    background-image: url(/assets/library/comisiones.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.moreinfo .card .icon.comisiones-periodicas {
    background-image: url(/assets/library/comisiones_periodicas.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.moreinfo .card .icon.gestor-personal {
    background-image: url(/assets/library/gestor.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.moreinfo .card .icon.herramientas-mkt {
    background-image: url(/assets/library/marketing.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.comofunciona .card .icon.formulario {
    background-image: url(/assets/library/registrate.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.comofunciona .card .icon.promocion {
    background-image: url(/assets/library/promocionar.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.comofunciona .card .icon.arrow-comision {
    background-image: url(/assets/library/comision.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.moreinfo .card .copy p,
.comofunciona .card .copy p {
    padding-top: 1rem;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
}

.dflex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

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

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

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}


.copy {
    text-align: left;
}

.yellow {
    color: #c69124;
}

.black {
    color: #202020;
}

.green {
    color: #5a9d21;
}

.tabla_comis {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    clear: both;
    border-radius: 8px;
    overflow: hidden;
}

.tabla_comis tr th {
    background-color: #c69124;
    color: #FFFFFF;
    font: 1.2rem 'Mulish', sans-serif;
    text-align: center;
    height: 32px;
    padding-top: 8px;
    font-weight: bold;
    border: 1px solid #a87820;
}

.tabla_comis tr {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #d0d0d0;
}

.tabla_comis tr td {
    padding-top: 10px;
    height: 40px;
    font: 2rem 'Mulish', sans-serif;
    text-align: center;
    font-weight: bold;
    border: 1px solid #d0d0d0;
}

.note p {
    font-weight: bold;
    font-style: italic;
    font-size: 0.7rem;
    padding: 0px;
    line-height: 0.9rem;
}

.title-producto {
    margin: 1rem auto;
    color: #c69124;
}

.productos .cards {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.productos .cards .card {
    border: 1px solid #c69124;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    width: auto;
    min-width: 220px;
    box-sizing: border-box;
}

.productos .cards .copy p {
    font-size: 1.3rem;
    line-height: 1.3rem;
    /* padding-left: 2rem;
    padding-right: 2rem; */
    font-weight: bold;
    text-align: center;
}


.contact {
    background-color: #c69124;
    padding: 1rem;
}

.contact.bg {
    /*background-image: url(/assets/library/isotipo.webp);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.contact .icon {
    width: 170px;
    height: 100px;
    margin-right: 1.5rem;
}

.contact .isotipo {
    background-image: url(/assets/library/isotipo.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.contact .card.title .copy p {
    width: 21rem;
    font-size: 1.5rem;
    line-height: 2rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 0rem;
    color: white;
    text-align: center;
    font-family: 'Mulish', sans-serif;
}

.contact .card .copy p {
    padding-top: 0rem;
    font-size: 1.3rem;
    color: white;
    font-family: 'Mulish', sans-serif;
}

.contact .mail {
    color: rgb(255, 255, 255);
    font-size: 1.3rem;
    font-family: 'Mulish', sans-serif;
    text-decoration: none;
}

.footer {
    width: 100%;
    background-color: #202020;
}

.footer .enlaces a {
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Mulish', sans-serif;
}

.footer .redes a {
    margin-right: 10px;
}

.footer .redes .facebook {
    background-image: url(/assets/library/facebook.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 35px;
    height: 35px;
}

.footer .redes .instagram {
    background-image: url(/assets/library/instagram.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 35px;
    height: 35px;
}

.footer .redes .twitter {
    background-image: url(/assets/library/twitter.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 35px;
    height: 35px;
}

.footer .redes .youtube {
    background-image: url(/assets/library/youtube.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 50px;
    height: 35px;
}

.footer .redes .linkedin {
    background-image: url(/assets/library/linkedin.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 35px;
    height: 35px;
}

.footer .sellos a {
    margin-right: 10px;
}

.footer .sellos .footer_logo {
    background-image: url(/assets/library/logo-04.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 150px;
    height: 50px;
    background-position: center;
}

.footer .sellos .mas18 {
    background-image: url(/assets/library/mas18.svg);
    background-repeat: no-repeat;
    background-size: 57%;
    background-position-x: 10px;
    background-position-y: 10px;
    display: block;
    width: 50px;
    height: 50px;
}

.footer .sellos .juegoseguro {
    background-image: url(/assets/library/juegoseguro.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 150px;
    height: 50px;
    background-position: center;
}

.footer .sellos .Juegoautorizado {
    background-image: url(/assets/library/juego-autorizado.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 150px;
    height: 50px;
    background-position: center;
}

.footer .sellos .autoprohibicion {
    background-image: url(/assets/library/autoprohibicion.svg);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position-x: 10px;
    background-position-y: 8px;
    display: block;
    width: 50px;
    height: 50px;
}

.footer .sellos .jugarbien {
    background-image: url(/assets/library/jugarbien.webp);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 110px;
    height: 50px;
    background-position: center;
}

.footer .sellos .ibia {
    background-image: url(/assets/library/ibia.webp);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100px;
    height: 50px;
    background-position: center;
}

.footer .sellos .ekomi {
    background-image: url(/assets/library/ekomi.webp);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 50px;
    height: 50px;
}

.footer .pagos {
    border-top: 1px solid #c69124;
    padding-top: 0.5rem;
    border-bottom: 1px solid #c69124;
}

.footer .pagos a {
    margin-right: 10px;
}

.footer .pagos .mastercard {
    background-image: url(/assets/library/maestro.svg);
    background-repeat: no-repeat;
    background-size: 65%;
    display: block;
    width: 80px;
    height: 50px;
    background-position-x: 14px;
    background-position-y: 4px;
}

.footer .pagos .maestro {
    background-image: url(/assets/library/mastercard.svg);
    background-repeat: no-repeat;
    background-size: 76%;
    display: block;
    width: 80px;
    height: 50px;
    background-position-x: 20px;
    background-position-y: 4px;
}

.footer .pagos .visa {
    background-image: url(/assets/library/visa.svg);
    background-repeat: no-repeat;
    background-size: 70%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-x: 33px;
    background-position-y: 10px;
}

.footer .pagos .bizum {
    background-image: url(/assets/library/bizum.svg);
    background-repeat: no-repeat;
    background-size: 105%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-y: 6px;
}

.footer .pagos .paypal {
    background-image: url(/assets/library/paypal.svg);
    background-repeat: no-repeat;
    background-size: 105%;
    display: block;
    width: 80px;
    height: 50px;
    background-position-x: 0px;
    background-position-y: 7px;
}

.footer .pagos .paysafecard {
    background-image: url(/assets/library/paysafecard.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    width: 100px;
    height: 40px;
    background-position-y: 10px;
}

.footer .pagos .aircash {
    background-image: url(/assets/library/aircash.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-y: 10px;
}

.footer .pagos .abon {
    background-image: url(/assets/library/abon.svg);
    background-repeat: no-repeat;
    background-size: 73%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-y: 5px;
}

.footer .pagos .sportiumuno {
    background-image: url(/assets/library/sportiumuno.webp);
    background-repeat: no-repeat;
    background-size: 110%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-x: -10px;
}

.footer .pagos .neteller {
    background-image: url(/assets/library/neteller.webp);
    background-repeat: no-repeat;
    background-size: 110%;
    display: block;
    width: 90px;
    height: 50px;
    background-position-x: -5px;
    background-position-y: -5px;
}

.footer .copy p {
    font-size: 0.7rem;
    line-height: 0;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    padding: 0.5rem;
}

.tycs {
    margin-top: 70px;
    width: 70%;
    margin-left: 15%;
}

.tycs p {
    font: 13px 'Mulish', sans-serif;
}

.tycs h2 {
    margin-top:1.5rem;
    font-size: 1.8rem !important;
    font-family: 'Mulish', sans-serif;
}

.tycs ul{
    margin-left: 2rem;
}

.tycs li{
      font: 13px Arial;
}


.logo {
    height: 40px;
    width: 280px;
    background: url(/assets/library/logo_principal_dig.svg) left center / contain no-repeat;
  }


@media (max-width: 900px) {
    .header {
        position: fixed;
        -webkit-backface-visibility: hidden;
        align-items: center;
        justify-content: space-around;
        display: flex;
    }

    .logo {
        margin-left: 0;
        min-width: 145px;
        height: 50px;
        width: 180px;
        background-image: url(/assets/library/logo_vertical_princial.svg);
        background-repeat: no-repeat;
        background-size: 85%;
    }

    .menu-desktop {
        display: none;
    }

    .menu-mobile {
        font-size: 1rem;
        background: 0 0 url(/assets/library/menu_movil.svg) no-repeat;
        display: inline-block;
        min-width: 2.5em;
        background-size: 400%;
        overflow: hidden;
        height: 2.5em;
        background-position: 0 -80em;
        float: left;
        position: relative;
        z-index: 200;
        cursor: pointer;

    }

    .menu-mobile .menu-desplegable {  
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: #1f1f1f;             /* fondo oscuro como referencia */
        z-index: 200;
        box-shadow: 4px 0 18px rgba(0,0,0,0.4);
    }

    .menu-mobile .menu-desplegable .nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        background-color: #202020;
        align-items: center;
        height: 70px;
        justify-content: flex-start;
        width: 100%;
    }

    .menu-mobile .menu-desplegable .nav .left,
    .menu-mobile .menu-desplegable .nav .right {
        width: 45%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .menu-mobile .menu-desplegable .nav .right {
        justify-content: end;
    }

    .btn-close {
        background: 0 0 url(https://www.sportium.es/sportium_sportium-theme-23-7-2-4/images/ic_WL_sprite.png?t=1694957983323) no-repeat;
        background-position: 0 -115.5em;
        background-size: 400%;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    .overlay {
        display: none;
        opacity: .8;
        position: fixed;
        height: 99999vh;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        animation-name: overlayShow;
        z-index: 100;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .menu-mobile .menu-desplegable .container {
        display: flex;
        flex-direction: column;
        padding: 0
    }

    .menu-mobile .menu-desplegable .container a {
        position: relative;
        display: block;
        padding: 18px 16px 18px 18px;
        background: #222;                /* fondo oscuro como referencia */
        color: #fff;
        font-family: 'Mulish', sans-serif;
        font-weight: 800;                /* igual a la referencia */
        letter-spacing: 0.5px;
        font-size: 14px;
        text-transform: uppercase;
        border-bottom: 1px solid #2b2b2b;
        text-decoration: none;
        border-top: 1px solid rgba(255,255,255,0.30);
        border-bottom: 1px solid rgba(255,255,255,0.30);
    }

    .btn2 {
        color: white;
        text-decoration: none;
        font-size: 20px;
    }

    .login {
        margin-left: 0;
        margin-right: 5%;
    }

    .login a {
        font-size: 15px;
    }


    .banner {
        background-image: url(/assets/library/slide_mobile.webp);
        padding-bottom: 100%;
    }

    .moreinfo .cards,
    .comofunciona .cards {
        flex-direction: column;
        align-items: center;
    }

    .moreinfo .title {
        margin-top: 0;
    }

    .dflex {
        flex-wrap: wrap;
    }

    .productos .cards {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        display: flex;
        flex-direction: column;
    }

    .productos .cards .copy p {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.7rem;
        padding-left: 0rem;
        padding-right: 0rem;
        font-weight: bold;
    }

    .info .copy {
        margin-top: 1rem;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-end;
        width: 80%;
        justify-content: align-start;
        margin-bottom: 2rem;
    }

    .info .copy p {
        font-family: arial, helvetica, sans-serif;
        font-size: 25px;
        line-height: 1.4rem;
    }


    .info .copy .p1 {
        display: flex;
        flex: 1 1 0px;
        margin-bottom: 1rem;
        flex-direction: column;
    }

    .info .copy .p1 .title {
        margin-left: 0rem;
        margin-right: 0rem;
        width: 100%;
        text-align: left;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .info .copy .p1 .percent {
        font-size: 7rem;
    }

    .info .copy .p2 p {
        margin-left: 1rem;
        margin-right: 0rem;
        width: 100%;
        text-align: left;
    }

    .container {
        margin: 0% 5% 0% 5%;
        width: 90%;
    }

    .moreinfo .card .icon,
    .comofunciona .card .icon {
        width: 125px;
        height: 125px;
    }

    .moreinfo .card {
        margin-bottom: 3rem;
    }

    .comofunciona .card {
        margin-bottom: 2rem
    }

    .contact .card {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .contact .card.title .copy p {
        width: 100%;
        text-align: center;
    }

    .contact .card .copy {
        margin-bottom: 1rem;
    }

    .contact .card .copy p {
        font-size: 1.3rem;
        line-height: 1.5rem;
        text-align: center;
    }

    .contact .card .vr {
        display: none;
    }

    .footer .cards .enlaces {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .footer .cards .enlaces a {
        margin-bottom: 1rem;
    }

    .footer .copy p {
        line-height: 0.8rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }


    .sp-3 {
        margin-top: 1rem;
    }

    .sp-5 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    h2 {
        white-space: wrap;
        font-size: 1.4rem;
        padding: 0%;
    }

    p {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .tycs {
        margin-top: 70px;
        width: 90%;
        margin-left: 5%;
    }

    .tycs p {
        font: 13px Arial;
    }

    .tycs h2 {
        font: 16px;
        font-family: arial, helvetica, sans-serif;
    }
}

/* Media query para iPhone SE (375px) y dispositivos pequeños */
@media (max-width: 425px) {
    .header {
        display: flex;
        column-gap: 5px;
        padding: 0px 10px;
    }

    .logo {
        min-width: 100px;
        height: 38px;
        background-size: 80%;
        background-image: url(/assets/library/logo_vertical_princial.svg);
    }

    .separator-image {
        width: 100%;
    }

    .menu-mobile .menu-desplegable .nav .btn1 {
        padding: 5px 12px;
        font-size: 18px;
    }

    .menu-mobile .menu-desplegable .nav .btn2 {
        font-size: 18px;
    }

    .vr {
        height: 1.5rem;
        margin: 10px 5px;
    }
}

