﻿
/* Definición completa de la familia de fuentes SUSE */
@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE';
    src: url('/assets/fonts/SUSE/SUSE-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'SUSE', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'SUSE', sans-serif;
    margin: 0;
    padding: 0;
}


.container {
    width: 100%;
    height: 100vh;
}

/* Breakpoint para 1920x1200 (pantallas grandes) */
@media (min-width: 1920px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2020px; /* Ajusta según tu necesidad */
    }
}

/* Breakpoint estándar de Bootstrap para xxl (modificado) */
@media (min-width: 1400px) and (max-width: 1919px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1800px; /* Valor original de Bootstrap para xxl */
    }
}

/* Breakpoints para dispositivos más pequeños (opcional) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px; /* Valor original de Bootstrap para xl */
    }
}

/* Tablets */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

/* Tablets pequeñas */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

/* Móviles */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

/* Móviles pequeños */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }
}


section {
    width: 100%;
    min-height: 100vh; /* Cambiamos height por min-height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: linear-gradient(to bottom, #63b9ae, #6d267d);
    overflow: hidden; /* Agregamos overflow: hidden para ocultar el scrollbar */
}

    section .color {
        position: absolute;
        filter: blur(150px);
    }

        section .color:nth-child(1) {
            top: -350px; /* Agregamos px para indicar unidades */
            width: 600px;
            height: 600px;
            background-color: #ff359b;
        }

        section .color:nth-child(2) {
            bottom: -150px;
            left: 100px;
            width: 500px;
            background-color: #0128d6;
        }

        section .color:nth-child(3) {
            bottom: 50px;
            right: 100px;
            width: 300px;
            height: 300px;
            background-color: #302c2c;
        }


    section .box {
        position: relative;
    }

        section .box .square {
            position: absolute;
            backdrop-filter: blur(5px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            animation: animate1 10s linear infinite;
            animation-delay: calc(-1s * var(--i));
        }


section .box .square:nth-child(1) {
    top: -50px;
    right: -60px;
    width: 100px;
    height: 100px;
}

section .box .square:nth-child(2) {
    top: 150px;
    left: -80px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

section .box .square:nth-child(3) {
    bottom: 50px;
    right: -60px;
    width: 80px;
    height: 80px;
    z-index: 2;
}

section .box .square:nth-child(4) {
    bottom: -80px;
    left: 100px;
    width: 50px;
    height: 50px;
}

section .box .square:nth-child(5) {
    top: -80px;
    left: 140px;
    width: 60px;
    height: 60px;
}

.area {
    background-color: #191919;
    /*background-image: linear-gradient(25deg, #6d267d 40%, #63b9ae 80%, #63b9ae 40%);*/
}

    .area .encabezado {
        background-color: #6d267d;
        /*background-image: linear-gradient(25deg, #6d267d 40%, #63b9ae 80%, #63b9ae 40%);*/
    }

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 80px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes animate1 {
    0%, 100% {
        transform: translate(-30px);
    }

    50% {
        transform: translate(30px);
    }
}