
       /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Nav-bar*/
        .liquid-glass {
            background: rgba(48, 48, 48, 0.4);
            backdrop-filter: blur(8px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(130, 130, 130, .6);
            border-radius: 30px;

            padding: 0.5rem 1rem;
            margin: 1rem;
        }

        .home-glass-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            /* lo hace circular */
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(156, 156, 156, 0.3);
            backdrop-filter: blur(12px) saturate(200%);
            -webkit-backdrop-filter: blur(12px) saturate(200%);

            /* espacio respecto al resto del navbar */
        }

        .home-glass-btn:hover {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(10px) saturate(200%);
            -webkit-backdrop-filter: blur(10px) saturate(200%);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .home-glass-btn a {
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .betapersei{
            font-size: 1.4rem;
            text-decoration: none;
        }

        .glass-text {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-weight: 600;
            color: #FFF !important;
            /* backdrop-filter: blur(12px) saturate(200%); */
            /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); */
        }

        .glass-btn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px) saturate(200%);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 0.3rem 0.6rem;
            font-size: 1.2rem;
        }

        .glass-btn:hover {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(10px) saturate(200%);
            -webkit-backdrop-filter: blur(10px) saturate(200%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transform: none;

        }

        .glass-btn:focus {
            outline: none;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mockup section*/
        .mockup-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: radial-gradient(circle, rgb(42, 42, 42) 0%, rgba(0, 0, 0, 1) 100%);
        }

        .mockup {
            position: absolute;
            width: 200px;
            animation: moveUp linear infinite;
        }

        .text-overlay h1 {
            font-size: 6rem;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .mockup {
                width: 100px;
            }

            .text-overlay h1 {
                font-size: 3rem;
                line-height: 1.2;
            }
        }

        .mockup img {
            width: 100%;
            height: auto;
            display: block;
        }

        @keyframes moveUp {
            from {
                transform: translateY(120vh);
            }

            to {
                transform: translateY(-600px);
            }
        }

        .overlay-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, 0) 100%);
            z-index: 2;
            height: 100vh;
        }

        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  heading text*/

        .heading-text {
            font-family: "Outfit", sans-serif;
            font-optical-sizing: auto;
            font-weight: 900;
            font-style: normal;
        }

        .text-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            z-index: 3;
            pointer-events: none;
        }


        .animated-word {
            display: inline-block;
            overflow: hidden;
            vertical-align: top;
            height: 1em;
        }

        .animated-word span {
            display: block;
            animation: slideUp 15s infinite;
        }

        @keyframes slideUp {
            0% {
                transform: translateY(0%);
            }

            11.11% {
                transform: translateY(-100%);
            }

            22.22% {
                transform: translateY(-200%);
            }

            33.33% {
                transform: translateY(-300%);
            }

            44.44% {
                transform: translateY(-400%);
            }

            55.55% {
                transform: translateY(-500%);
            }

            66.66% {
                transform: translateY(-600%);
            }

            77.77% {
                transform: translateY(-700%);
            }

            88.88% {
                transform: translateY(-800%);
            }

            100% {
                transform: translateY(0%);
            }
        }

        /* - - - - - - - - - - - - - - - - - - - - - - - - -  splide*/
        .splide__img {

            height: 500px;
            width: 100%;
            /* padding: 10px; */
        }



        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Slider cards*/

        .bg-slider {
            /* background: linear-gradient(0deg,rgba(3, 3, 31, 1) 0%, rgba(42, 18, 71, 1) 56%, rgba(3, 3, 31, 1) 100%); */
            background: linear-gradient(0deg, rgba(255, 255, 255, 1) 21%, rgba(206, 206, 206, 1) 100%);
        }

        .slider-card {
            width: 350px;
            height: 500px;
            /* altura fija */
            border-radius: 28px;
            padding: 10px;
            box-shadow: 0 8px 14px rgba(0, 0, 0, 0.21);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            /* textos abajo */
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            /* importante para contener el ::after */
            overflow: hidden;
            /* para que el degradado no se salga */
        }

        @media (max-width: 640px) {
            .slider-card {
                width: 280px;
            }
        }

        .slider-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: inherit;
            /* usa el fondo definido inline */
            z-index: 0;
            /* queda al fondo */
        }

        .slider-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
            /* degradado sobre el fondo */
            pointer-events: none;
        }

        /* Aseguramos que el contenido quede arriba */
        .slider-card>* {
            position: relative;
            z-index: 2;
        }


        .slider-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, );
        }

        .card-logo {
            height: auto;
            margin-bottom: auto;
            /* empuja el resto hacia abajo */
            margin-top: auto;
            padding: 30px;
        }

        .card-texts {
            text-align: left;
            /* textos alineados a la izquierda */
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            border-bottom-left-radius: 17px;
            border-bottom-right-radius: 17px;
        }

        .card-texts h4 {
            background-image: linear-gradient(97deg, #0096FF, #BB64FF 42%, #F2416B 74%, #EB7500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .card-texts h2 {
            font-weight: 700;
            color: #000;
            margin: 0 0 16px;
            line-height: 1.2;
        }

        .card-texts p {
            color: #585858;
            margin: 0;
        }

        .card-actions {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            /* botón a la derecha */
            margin-top: 5px;
        }

        /* Botón redondo */
        .slider-card a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            /* lo hace circular */
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            border: 1px solid rgba(192, 191, 191, 0.3);
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            position: relative;
            bottom: 0px;
            right: 0px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .slider-card a:hover {
            background: #005bb5;
            background: rgba(0, 0, 0, 0.8);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 112000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            z-index: 112001;
        }

        .modal-overlay.show .modal-content {
            transform: translateY(0);
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
        }

        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - experiencias*/

       

        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  acá ponemos el Bento grid*/
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 20px;
            padding: 20px;
        }

        .bento-item {
            /* background: linear-gradient(0deg, #000000, #1f1f1f); */
            background-color: rgba(255, 255, 255, .9);
            backdrop-filter: blur(12px) saturate(200%);
            -webkit-backdrop-filter: blur(12px) saturate(200%);

            /* border: 1px solid rgba(255, 255, 255, 0.175); */
            border: 7px solid rgba(255, 255, 255, 0.3);

            background-clip: padding-box;

            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #303030;
            text-align: center;
            padding: 10px;

        }

        /* Variaciones de tamaño */
        .bento-item.wide {
            grid-column: span 2;
        }


        .bento-item.tall {
            grid-row: span 2;
        }

        .bento-item.item7 {
            grid-column: span 2;
            /* doble de ancho */
            grid-row: span 1;
            /* la mitad de alto comparado con tall */
        }

        /* Responsividad */
        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bento-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 2;
            }

            .bento-item:nth-child(2),
            .bento-item:nth-child(4) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .bento-item:nth-child(3) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .bento-item:nth-child(5) {
                grid-column: span 1;
                grid-row: span 2;
            }

            .bento-item:nth-child(7),
            .bento-item:nth-child(8) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        @media (max-width: 640px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .bento-item:nth-child(5) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        .bento-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            font-size: 18px;
            border-radius: 50%;
            /* lo hace circular */
            background: rgb(123, 36, 160);
            color: #fff;
            border: 1px solid rgba(156, 156, 156, 0.3);
            backdrop-filter: blur(12px) saturate(200%);
            -webkit-backdrop-filter: blur(12px) saturate(200%);

            /* espacio respecto al resto del navbar */
        }

        /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  grid diseño web*/

        .custom-grid {
            display: grid;
            gap: 20px;
        }

        .code-right {
            height: 710px;
            background-image: url(img/disenoweb/disenoweb.png);
            background-size: cover;
        }


        /* Desktop (pantallas grandes, más de 1024px) */
        @media (min-width: 1025px) {
            .custom-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                min-height: 80vh;
            }

            .custom-grid .left-col {
                order: 1;
            }

            .custom-grid .right-col {
                order: 2;
                background-position: center left;
                background-size: 1000px;
                background-repeat: no-repeat;
                background-size: cover;
            }

            .code-right {
                height: 710px;
                background-image: url(img/disenoweb/disenoweb.png);
                background-size: cover;
            }
        }

        /* iPad / tablets (768px a 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            .custom-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
                /*height: 100vh;  grid ocupa toda la altura */
            }

            .custom-grid .left-col {
                order: 1;
            }

            .custom-grid .right-col {
                order: 2;
            }

            .code-right {
                height: 710px;
                background-image: url(img/disenoweb/disenoweb.png);
                background-size: cover;
            }
        }


        /* iPhone / móviles (menor a 768px) */
        @media (max-width: 767px) {
            .custom-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
            }

            .custom-grid .left-col {
                order: 2;
                min-height: 50vh;
            }

            /* abajo y mitad de la pantalla */
            .custom-grid .right-col {
                order: 1;
                height: 20vh;
            }

            /* arriba y mitad de la pantalla */
            .code-right {
                height: 710px;
                background-image: url(img/disenoweb/disenoweb.png);
                background-size: contain;
                background-repeat: no-repeat;

            }
        }

        .text-grad {
            background-image: linear-gradient(97deg, #0096FF, #BB64FF 42%, #F2416B 74%, #EB7500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            font-family: "Outfit", sans-serif;
        }

        /* Base Desktop */
        .grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
            width: 100%;
            max-width: 600px;
            margin: auto;
            height: auto;
        }

        .grid-2x2 .box {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(100, 150, 255, 0.2);
            border: 2px solid #6699ff;
            border-radius: 8px;
            text-align: center;
            padding: 10px;
        }

        /* Desktop: Box1 1x2 */
        .grid-2x2 .box1 {
            grid-column: 1 / 2;
            grid-row: 1 / span 2;
        }

        .grid-2x2 .box2 {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            aspect-ratio: 1 / 1;
        }

        .grid-2x2 .box3 {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
            aspect-ratio: 1 / 1;
        }

        /* iPad */
        @media (min-width: 768px) and (max-width: 1024px) {
            .grid-2x2 {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
            }

            .grid-2x2 .box1 {
                grid-column: 1 / span 2;
                grid-row: 1 / 2;
            }

            .grid-2x2 .box2 {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
                aspect-ratio: 1 / 1;
            }

            .grid-2x2 .box3 {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
                aspect-ratio: 1 / 1;
            }
        }

        /* iPhone: 2 columnas, 4 filas */
        @media (max-width: 899px) {
            .grid-2x2 {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto auto auto auto;
                /* se adapta */
                gap: 10px;
            }

            .grid-2x2 .box1 {
                grid-column: 1 / span 2;
                /* ocupa 2 columnas */
                grid-row: 1 / span 2;
                /* ocupa 2 filas */
                aspect-ratio: 1 / 1;
                /* cuadrado perfecto */
                height: auto;
                /* deja que el aspecto lo controle */
            }

            .grid-2x2 .box2 {
                grid-column: 1 / 2;
                /* primera columna */
                grid-row: 3 / span 2;
                /* ocupa 2 filas debajo */
                aspect-ratio: 1 / 1;
                /* cuadrado */
            }

            .grid-2x2 .box3 {
                grid-column: 2 / 3;
                /* segunda columna */
                grid-row: 3 / span 2;
                /* ocupa 2 filas debajo */
                aspect-ratio: 1 / 1;
                /* cuadrado */
            }
        }