.noticeButtonsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Estado normal (Escritorio) */
.noticeButton {
    margin: 1px;
    background: #ebebeb;
    padding: 7px 15px;
    border-radius: 10px;
    color: #000;
    box-shadow: 2px 2px 2px #909090;
    font-weight: bold;
    text-align: center;
    flex: none; /* <-- Previene recorte en pantallas grandes */
    white-space: nowrap; /* <-- Evita que el texto salte de línea */
}

/* 📱 En celular -> 2 por fila */
@media (max-width: 600px) {
    .noticeButton {
        flex: 1 1 calc(50% - 20px); /* 2 por fila */
        white-space: normal; /* Permitimos salto si es necesario */
    }
}

/*.noticeButton {
    margin: 10px;
    background: #ebebeb;
    padding: 7px;
    border-radius: 10px; color: #000; box-shadow: 2px 2px 2px #909090; font-weight: bold;
}*/


.card {
    height: 420px;
    width: 250px;
    display: block;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    overflow: hidden;
}

.footer-card {
    height: 520px;
    width: 250px;
    background-color: rgba(0,0,0,.5);
    display: block;
    position: absolute;
    top: -12px;
    padding: 15px 20px;
    color: #fff;
    text-align: center;
    transform: translateY(360px);
    transition: transform 0.2s;
}

.title-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1.3em;
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7em;
    font-weight: lighter;
    letter-spacing: 4px;
    line-height: 2em;
    text-transform: uppercase;
}

.info {
    height: 60%;
    width: 95%;
    display: block;
    margin: 0 auto 40px;
    padding: 0 10px;
    transform: translateY(50px);
    overflow-y: scroll;
}

.info-p {
    font-family: sans-serif;
    font-size: 15px;
    text-align: center;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.info::-webkit-scrollbar {
    width: 7px;
    height: 10px;
}

.info::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

.info::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border: 0 none #fff;
    border-radius: 50px;
}

.info::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.info::-webkit-scrollbar-track {
    background: #666;
    border: 0 none #fff;
    border-radius: 50px;
}

.info::-webkit-scrollbar-track:hover {
    background: #666;
}

.info::-webkit-scrollbar-corner {
    background: transparent;
}

.social-media {
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 20px;
}

.link-media {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.25s ease-in-out;
}

.link-media:hover {
    transform: translateY(-5px);
}

.img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.label:before {
    content: "Ver Más";
    width: 250px;
    position: absolute;
    bottom: 15px;
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-align: center;
    line-height: 2em;
    cursor: pointer;
    z-index: 1;
}

.check {
    display: none;
}

.check:checked ~ .label:before {
    content: "Cerrar";
}

.check:checked ~ .img {
    transform: scale(1.2);
    filter: blur(2px);
}

.check:checked ~ .footer-card {
    transform: translateY(0);
}

.check:checked ~ .footer-card .info {
    transform: translateY(30px);
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.media {
    border-radius: 20px;
    max-width: 300px;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media img {
    max-width: 100%;
    height: auto;
}

.layer {
    border-radius: 20px;
    opacity: 0;
    position: absolute;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 90%;
    background: #fff;
    color: #151e3f;
    transition: all 0.9s ease;
    p {
        transition: all 0.9s ease;
        transform: scale(0.1);
    }
}

p {
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
}

.media:hover .layer {
    opacity: 0.8;
    width: 90%;
    transition: all 0.5s ease;
    p {
        transform: scale(1);
        transition: all 0.9s ease;
    }
}

/*.a1
{
    margin-top: 245px;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 50px;
    background: #232323;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    color: #FFF;
    font-size: 15px;
    font-family: verdana;
    letter-spacing: 4px;
    !*    border-radius: 20px; *!
}*/

.a1 {
    margin-top: 245px;
    display: inline-block;
    width: 180px;
    height: 50px;
    background: #232323;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    color: #FFF;
    font-size: 15px;
    font-family: verdana;
    letter-spacing: 4px;
    position: relative; /* <- esto sí se queda */
}


.a1:before,
.a1:after,
.span1:before,
.span1:after
{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #727272;
    transition: 1s;
    mix-blend-mode: hue;
}

.a1:before
{
    top: -2px;
    left: -2px
}
.a1:after
{
    top: -2px;
    right: -2px;
}
.span1:before
{
    bottom: -2px;
    left: -2px
}
.span1:after
{
    bottom: -2px;
    right: -2px
}

.a1:hover:before,
.a1:hover:after,
.a1:hover .span1:before,
.a1:hover .span1:after
{
    width: calc( 180px/2 );
    height: calc( 50px/2 )
}




.animated-button1 {
    background: linear-gradient(-30deg, #640505 50%, #730000 50%);
    padding: 10px 20px;
    margin-top: 450px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #f7d4d4;
    font-size: 17px;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}



.button-tum {
    margin-top: 445px;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pulse-button {
    background: linear-gradient(45deg, #062f60, #07182E);
    transition: transform 0.3s ease;
}

.pulse-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0.05);
}

/* 8 */
.btn-8 {
    line-height: 40px;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
    color: #fff;
    -webkit-perspective: 300px;
    perspective: 300px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.btn-8:hover{
    color: #000;
}
.btn-8:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    transition: all 0.3s ease;
}
.btn-8:hover:after {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.custom-btn {
    width: 130px;
    height: 40px;
    padding: 10px 25px;
    border: 2px solid #000;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
/* 5 */
.btn-5 {
    background: #000;
    color: #fff;
    line-height: 42px;
    padding: 0;
    border: none;
    margin-top: 445px;
}
.btn-5:hover {
    background: #FFF;
    color: #000;
    box-shadow:
            -7px -7px 20px 0px #fff9,
            -4px -4px 5px 0px #fff9,
            7px 7px 20px 0px #0002,
            4px 4px 5px 0px #0001;
    font-family: Sans-serif;
}
.btn-5:before,
.btn-5:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #000;
    transition:400ms ease all;
}
.btn-5:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
    width:100%;
    transition:800ms ease all;
}


/* CSS */
.button-64 {
    margin-top: 450px;
    align-items: center;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 13px;
    justify-content: center;
    line-height: 1em;
    max-width: 60%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

.button-64:active,
.button-64:hover {
    outline: 0;
}

.button-64 span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.button-64:hover span {
    background: none;
}

@media (min-width: 768px) {
    .button-64 {
        font-size: 13px;
        min-width: 126px;
    }
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.media {
    border-radius: 20px;
    max-width: 300px;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media img {
    max-width: 100%;
    height: auto;
}

.layer {
    border-radius: 20px;
    opacity: 0;
    position: absolute;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 90%;
    background: #fff;
    color: #151e3f;
    transition: all 0.9s ease;
    p {
        transition: all 0.9s ease;
        transform: scale(0.1);
    }
}

p {
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
}

.media:hover .layer {
    opacity: 0.8;
    width: 90%;
    transition: all 0.5s ease;
    p {
        transform: scale(1);
        transition: all 0.9s ease;
    }
}


.button-86 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-86::after,
.button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #3366FF;
    border-radius: 10px;
}

.button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #adabab73;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

@media (max-width: 915px) {
    .background {
        width: 50%;
        height: 100%;
    }
}

.banner {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner spline-viewer {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.superE {
    width: 120px !important;
    position: absolute;
    z-index: 100;
    bottom: 0;
    padding-bottom: 105px;
    padding-left: 12px;
}

@media (max-width: 768px) {
    .banner {
        height: 70vh;
        padding: 15px;
    }

    .superE{
        padding-bottom: 200px;
    }
}

.text-us{
    background: #4a4a4a63;
    border-radius: 12px;
    padding: 12px;
    margin-left: 20px;
    margin-right: 20px;
}

.todos {
    background-image: url(../assets/img/background/todos2.png);
}

.cuboB {
    background-image:url(../assets/img/background/cubo2.png);
}

.timboxB {
    background-image:url(../assets/img/background/timbox2.png);
}

.taxB {
    background-image:url(../assets/img/background/tax2.png);
}

.caisatB{
    background-image: url(../assets/img/background/caisat2.png);
}

.tumB {
    background-image: url(../assets/img/background/tum2.png);
}

.insightB {
    background-image: url(../assets/img/background/insight2.png);
}

@media (max-width: 768px) {
    .todos {
        background-image: url(../assets/img/background/todosM.png);
    }

    .cuboB {
        background-image:url(../assets/img/background/cboM.png);
    }

    .timboxB {
        background-image:url(../assets/img/background/timboxM.png);
    }

    .taxB {
        background-image:url(../assets/img/background/taxM.png);
    }

    .caisatB{
        background-image: url(../assets/img/background/caisatM.png);
    }

    .tumB {
        background-image: url(../assets/img/background/tumM.png);
    }

    .insightB {
        background-image: url(../assets/img/background/insightM.png);
    }

    .panel{
        background: #000000cc;
    }

    .text-us{
        margin-left: 5px;
        margin-right: 5px;
    }
}
