* {
    padding: 0;
    margin: 0;
    font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: normal;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.section-general {
    background-image: url(../images/background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 40px;
    width: 100%;
}

.section-general .logo {
    padding-bottom: 40px;
}

.section-general h1 {
    font-size: 42px;
    line-height: 42px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-bottom: 25px;
}

.section-general h1 span {

    background: linear-gradient(to right, #51A2FF, #AD46FF, #F6339A);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
}

.section-general .description-general {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-bottom: 25px;

}



.main-container-squares {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-flow: column wrap;
    max-width: 1230px;
}

.child-square {
    border-radius: 10px;
    width: 70%;
    height: 80px;
    margin: 8px 5px;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    padding: 0.5%;
    font-family: arial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    container-type: size;
    border: 1px solid #333333;
    background-color: #3333333b;
    padding: 0 20px;
    gap: 30px;
}

.child-square img {
    min-width: 42px;
}

.child-square .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.child-square .content-2 {
    display: none;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    min-width: 590px;
    font-size: 14px;
    line-height: normal;
}

.child-square .content-2 ul {
    list-style: none;
    padding-left: 0;
}

.child-square .content-2 .inner-content-2 {
    display: none;
}

.child-square .content-2 li {
    position: relative;
    padding-left: 10px;
}

.child-square .content-2 li::before {
    content: "•";
    color: #D400D0;
    font-weight: bold;
    display: inline-block;
    width: 16px;
    margin-left: -1em;
    font-size: 26px;
    margin-top: 0px;
}

.child-square .content-2 .innner-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.container-buttton {
    margin-top: 15px;
    display: none;
}

.child-square .content ul {
    display: flex;
    gap: 30px;
    padding-left: 15px;
}

.child-square .content p {
    display: flex;
    gap: 40px;
    font-weight: 700;
    font-size: 15px;
    margin: 0!important;
    padding: 0!important;
    line-height: normal;
}


.child-square .fit {
    color: #fff;
    line-height: 1;
    text-align: center;
    font-size: clamp(10px, 17cqi, 160px);
    word-break: break-word;
}

.btn-inner-content {
    background-image: linear-gradient(to right, #00D1FF, #7B61FF);
    font-size: 14px;
    color: #071018;
    font-weight: 600;
    padding: 10px 40px;
    border-radius: 25px;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
line-height: normal;
}

.btn-inner-content:hover {
    transform: scale(1.1);
    transition: 200ms;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    /* Color de tu marca */
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Evita saltos bruscos al redimensionar */
.child-square {
    transition: min-height 0.3s ease-out;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.child-square.pop {
    animation: pop-in .25s ease forwards;
}

@media (max-width:768px) {
    .section-general {
        background-attachment: initial;
        margin-top: -13px;
        padding-top: 40px;
        background-image: url(../images/background-mobile.webp);
    }

    .section-general h1 {
        text-align: center;
        font-size: 25px;
        max-width: 300px;
        line-height: normal;
    }

    .section-general .description-general {
        text-align: center;
        max-width: 300px;
        padding-bottom: 30px;
    }

    .child-square .content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .child-square {
        height: max-content;
        display: grid;
        grid-template-columns: 15% 82%;
        width: 100%;
        max-width: 85%;
        padding: 0;
        gap: 10px;
        padding: 10px;
    }

    .child-square .content ul {
        flex-direction: column;
        gap: 3px;
    }

    .child-square .content p {
        padding-left: 0;
    }

    .child-square img {
        min-width: 51px;
    }

    .child-square .content-2 {
        min-width: auto;
    }

}