:root {
    --primario: rgb(42, 100, 105);

    /* Verde aqua oscuro */
    --secundario: rgba(38, 150, 145, 1);

    /* Aqua claro moderno para brillos, bordes y detalles */
    --terciario: rgba(135, 235, 225, 1);

    /* Azul petróleo profundo para contraste elegante */
    --cuaternario: rgba(18, 54, 62, 1);

    --whatsapp: rgba(115, 198, 107, 1);

    --sombraPrimario: rgba(42, 100, 105, 0.07);
    --sombraSecundario: rgba(38, 150, 145, 0.3);
    --sombraTerciario: rgba(135, 235, 225, 0.16);
    --sombraCuaternario: rgba(18, 54, 62, 0.12);
    --sombraBoton: rgba(135, 235, 225, 0.2);

    --sora: "sora";
    --sora_semi_bold: "sora_semi_bold";
    --sora_bold: "sora_bold";
    --inter: "inter";
    --inter_light: "inter_light";
}

@font-face {
    font-family: 'sora';
    src: url('../fuentes/sora.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sora_bold';
    src: url('../fuentes/sora_bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sora_semi_bold';
    src: url('../fuentes/sora_semi_bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'inter';
    src: url('../fuentes/inter.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'inter_light';
    src: url('../fuentes/inter_light.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--inter_light);
    /* cursor: url("../iconos/cursor.webp"),auto; */
}

div {
    display: flex;
}

img {
    object-fit: contain;
}

input {
    border: none;
    outline: none;
    background: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
}

#contenedor {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: none;
    z-index: 1;
    position: relative;
    display: none;
    opacity: 0;
    padding-bottom: 50px;
}

#inicial {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 777;
}

#logo_inicial {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
}

#p_logo_inicial {
    width: auto;
    height: auto;
    margin-top: 43px;
    font-family: var(--sora);
    font-size: 50px;
    color: var(--primario);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
}

#beneficios {
    width: 100%;
    height: 600px;
    min-height: 600px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#img_portada {
    width: 100%;
    max-width: 2160px;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
}

#head {
    width: 100%;
    max-width: 2110px;
    height: 77px;
    min-height: 77px;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    align-self: center;
}

#div_logo {
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    display: none;
    opacity: 0;
}

.logo {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.16));
}

.p_logo {
    width: 180px;
    min-width: 180px;
    height: auto;
    margin-left: 20px;
    font-family: var(--sora);
    font-size: 20px;
    color: var(--primario);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.16));
}

#menu {
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

#menu_responsive{
    display:none;
}

#btn_menu_responsive{
    display: none;
    width: 40px;
    height: 40px;
    margin-left: auto;
    cursor: pointer;
}

.p_menu {
    width: auto;
    height: auto;
    font-size: 18px;
    font-family: var(--sora);
    margin-left: 11px;
    color: var(--secundario);
    padding: 5px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.8s;
}

.p_menu:hover {
    transform: scale(1.05);
}

#principal {
    width: 100%;
    max-width: 1400px;
    height: auto;
    opacity: 0;
    transition: all 5s;
    flex-direction: row;
    align-items: center;
    padding: 25px;

    /* border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.70);

    backdrop-filter: blur(0.7px) saturate(80%);
    -webkit-backdrop-filter: blur(0.7px) saturate(80%);

    box-shadow: 0 18px 55px rgba(42, 100, 105, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);

    margin-left: 43px;
    margin-right: 43px; */
    z-index: 2;
}

#info_beneficios {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 34px 0px 0px 34px;
    padding: 34px;
    padding-bottom: 50px;
}

.obj_beneficios {
    width: 100%;
    height: 60px;
    min-height: 60px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 43px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease;
}

.icono_beneficio {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 1.5px 3px rgba(0, 0, 0, 0.16));
    opacity: 0.9;
}

.p_beneficio {
    width: auto;
    height: auto;
    font-size: 18px;
    margin-left: 34px;
}

#btn_suscribirse {
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 11px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
    background: var(--primario);
    color: #ffffff;
    font-family: var(--sora);
    font-size: 18px;
    align-self: center;
    filter: drop-shadow(0 2.5px 5px rgba(0, 0, 0, 0.25));
    transition: all 0.7s;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

#btn_suscribirse:hover {
    background: var(--secundario);
}

#div_video {
    width: auto;
    height: auto;
    border-radius: 0px 34px 34px 0px;
    position: relative;
}

#video {
    width: 500px;
    height: auto;
}

#icono_audio {
    width: 33px;
    height: 33px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 15px;
    margin-right: 15px;
    z-index: 2;
    cursor: pointer;
}

.icono_beneficio.icono_saltando {
    animation: saltoIconoBeneficio 1.4s ease-in-out infinite;
}

/* COMIENZA CLIENTES */

#clientes {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    margin-top: 50px;
    background: #fdfdfd;
}

#titulo_clientes {
    width: auto;
    height: auto;
    font-size: 30px;
    font-family: var(--sora);
    padding-bottom: 2.5px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
}

#lista_clientes {
    width: 90%;
    max-width: 2160px;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    margin-top: 15px;
}

.logo_cliente {
    width: auto;
    height: 52px;
    min-height: 52px;
    filter: drop-shadow(0 1.5px 3px rgba(0, 0, 0, 0.16));
    margin: 34px;
    cursor: pointer;
}

.logo_cuadrada {
    width: 90px;
    height: 90px;
}

.logo_rectangular {
    width: 110px;
    height: 55px;
}

.logo_cliente {
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

.logo_cliente.logo_cliente_activo {
    opacity: 1;
}

#testimonio_cliente {
    width: 100%;
    height: auto;
    margin-top: 30px;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease;
    text-align: center;
}

/* COMIENZA PLANES */

#planes {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    background: rgba(250, 253, 252, 1);
    padding: 16px;
    padding-bottom: 40px;
    padding-top: 40px;
    margin-top: 40px;
}

#titulo_planes {
    width: auto;
    height: auto;
    font-size: 35px;
    font-family: var(--sora);
    text-align: center;
}

#p_inauguracion{
    font-family: var(--inter);
    color: var(--secundario);
}

.p_inauguracion{
    width: auto;
    height: auto;
    margin-top: 40px;
    font-size: 22px;
    text-align: center;
}

#contenedor_planes {
    width: 100%;
    max-width: 2160px;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    margin-top: 70px;
}

.obj_plan {
    width: 320px;
    height: 700px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    padding: 30px;

    border-radius: 25px;
    border: solid 1px rgba(135, 235, 225, 0.22);

    background: rgba(255, 255, 255, 0.01);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 18px 45px rgba(18, 54, 62, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    transition: transform 0.7s ease, box-shadow 0.35s ease;
}

.obj_plan:hover {
    transform: translateY(-2px);

    box-shadow:
        0 24px 55px rgba(18, 54, 62, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cabeza_plan {
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.tipo_plan {
    width: 100%;
    height: auto;
    font-size: 25px;
    color: var(--secundario);
    padding: 11px;
    font-family: var(--sora);
    text-align: center;
    border-bottom: solid 0.5px var(--sombraSecundario);
}

.costo_plan {
    width: 100%;
    height: auto;
    font-size: 31px;
    color: #000000;
    font-family: var(--sora_bold);
    text-align: center;
    margin-top: 20px;
}

.cuerpo_plan {
    width: auto;
    height: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

.beneficios_plan {
    width: 100%;
    height: 100%;
    font-size: 20px;
    flex-direction: column;
    align-items: center;
    line-height: 1.8;
}

.btn_plan {
    width: 200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 11px 20px;
    border-radius: 20px;

    font-family: var(--inter);
    font-size: 20px;
    color: #ffffff;

    background: linear-gradient(120deg,
            var(--cuaternario),
            var(--primario),
            var(--secundario),
            var(--primario));

    background-size: 220% 220%;
    animation: gradienteBtnPlan 5s ease infinite;

    align-self: center;
    filter: drop-shadow(0 2.5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.7s ease, filter 0.35s ease, opacity 0.7s ease;
    cursor: pointer;
    opacity: 0.8;
    margin-top: auto;
}

.btn_plan:hover {
    transform: translateY(-1px);
    transform: scale(1.008);
    filter: drop-shadow(0 5px 10px rgba(42, 100, 105, 0.28));
    opacity: 1;
}

.btn_plan:active {
    transform: scale(0.97);
}

#titulo_paquetes {
    width: auto;
    height: auto;
    font-size: 30px;
    font-family: var(--sora);
    padding-bottom: 2.5px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 70px;
    text-align: center;
}

#paquetes {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 25px;
    margin-top: 35px;
}

.obj_paquete {
    width: 300px;
    min-width: 300px;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 25px;
    border-radius: 25px;
    border: solid 1px rgba(135, 235, 225, 0.22);

    background: rgba(255, 255, 255, 0.01);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 18px 45px rgba(18, 54, 62, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    transition: transform 0.7s ease, box-shadow 0.35s ease;
}

.obj_paquete:hover {
    transform: translateY(-2px);

    box-shadow:
        0 24px 55px rgba(18, 54, 62, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.img_paquete {
    width: 50px;
    height: 50px;
}

.info_paquete {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}

.tokens_paquete {
    width: auto;
    height: auto;
    font-size: 20px;
    font-family: var(--sora_semi_bold);
    color: var(--secundario);
    pointer-events: none;
}

.costo_paquete {
    width: auto;
    height: auto;
    font-size: 25px;
    font-family: var(--sora_bold);
    color: var(--primario);
    margin-top: 10px;
    pointer-events: none;
}

/*COMIENZA CONTACTO*/

#contacto {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-bottom: solid 0.5px var(--sombraSecundario);
    border-top: solid 0.5px var(--sombraSecundario);
    margin-top: 50px;
}

#caja_contacto {
    width: 500px;
    min-width: 500px;
    height: 450px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#img_contacto {
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
    margin-left: 40px;
}

#titulo_contacto {
    width: 100%;
    height: auto;
    font-size: 25px;
    padding: 16px;
    font-family: var(--inter);
    text-align: center;
}

#btn_whatsapp {
    width: 300px;
    min-width: 300px;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 22px;
    border: solid 1px var(--whatsapp);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
    margin-top: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.8s;
}

#btn_whatsapp:hover {
    opacity: 1;
    transform: scale(1.006);
}

#icono_btn_whatsapp {
    width: 40px;
    height: 40px;
    pointer-events: none;
}

#p_btn_whatsapp {
    width: auto;
    height: auto;
    margin-left: 30px;
    font-size: 22px;
    color: var(--whatsapp);
    font-family: var(--sora);
    pointer-events: none;
}

#p_redes {
    width: 100%;
    height: auto;
    font-size: 22px;
    margin-top: 50px;
    text-align: center;
}

#redes_sociales {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.icono_redes {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
    margin-left: 20px;
    margin-right: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: all .8s;
}

.icono_redes:hover {
    opacity: 1;
    transform: scale(1.01);
}

#terminos_condiciones {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

#p_negocio_claro_ia {
    width: auto;
    height: auto;
    font-size: 20px;
    color: var(--secundario);
    font-family: var(--sora);
}

.terminos {
    width: auto;
    height: auto;
    font-size: 18px;
    color: var(--primario);
    opacity: 0.7;
    margin-top: 15px;
    transition: all 0.5s;
    cursor: pointer;
}

.terminos:hover {
    opacity: 1;
}

/*COMIENZA LOGIN*/

#login{
    display: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.5s;
}

#caja_login{
    width: 700px;
    height: auto;
    padding: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#logo_login{
    width: 190px;
    height: 190px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
}

#p_logo_login{
    width: auto;
    height: auto;
    margin-top: 43px;
    font-family: var(--sora);
    font-size: 40px;
    color: var(--primario);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
}

.input_login{
    width: 300px;
    min-width: 300px;
    height: auto;
    font-size: 20px;
    padding-bottom: 2px;
    border-bottom: solid 1px var(--sombraSecundario);
    font-family: var(--inter);
    margin-bottom: 25px;
}

#input_usuario{
    margin-top: 50px;
}

#btn_login{
    width: 200px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 11px;
    padding-bottom: 4px;
    padding-top: 4px;
    background: var(--secundario);
    color: #ffffff;
    font-family: var(--sora);
    font-size: 22px;
    text-align: center;
    border-radius: 11px;
    margin-top: 25px;
    cursor: pointer;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.30));
}

#p_login_iniciando{
    display: none;
    opacity: 0;
    width: auto;
    height: auto;
    font-size: 22px;
    margin-top: 25px;
}

#btn_volver{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 11px;
    margin-left: 7px;
    opacity: 0.8;
    transition: all 0.5s;
    cursor: pointer;
}

#btn_volver:hover{
    opacity: 1;
}

#menu_responsive{
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #ffffff;
    z-index: 99999;
}

#head_menu_responsive{
    width: 100%;
    height: 77px;
    min-height: 77px;
    padding: 15px;
    flex-direction: row;
    align-items: center;
}

.p_menu_responsive{
    width: 300px;
    min-width: 300px;
    height: auto;
    font-family: var(--sora);
    font-size: 30px;
    margin-top: 20px;
    padding: 20px;
    color: var(--secundario);
    text-align: center;
    border-bottom: solid 1px var(--sombraSecundario);
    cursor: pointer;
}

@keyframes gradienteBtnPlan {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* KEYFRAMES */

@keyframes saltoIconoBeneficio {

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

    50% {
        transform: translateY(-1px);
    }
}

/* COMIENZAN MEDIA QUERIES */

@media screen and (max-width:1100px) {
    #video {
        width: 420px;
        height: auto;
    }
}

@media screen and (max-width:990px) {
    .p_logo {
        font-size: 18px;
    }

    .p_menu {
        font-size: 16px;
    }

    #beneficios {
        height: auto;
        min-height: auto;
        justify-content: flex-start;
    }

    #video {
        width: 100%;
        height: auto;
    }

    #principal {
        height: auto;
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 80px;
        padding: 0px;
    }

    .obj_plan {
        width: 280px;
    }

    .tipo_plan {
        height: 90px;
        font-size: 23px;
    }

    .costo_plan {
        font-size: 29px;
    }

    .obj_paquete {
        width: 280px;
        min-width: 280px;
    }

    .tokens_paquete {
        font-size: 18px;
    }

    #img_contacto {
        width: 320px;
        height: 320px;
    }
}

@media screen and (max-width:910px) {
    #contenedor_planes {
        flex-direction: column;
    }

    .obj_plan {
        width: 70%;
        max-width: 770px;
        height: auto;
        min-height: auto;
        margin-bottom: 50px;
    }

    .tipo_plan{
        height: auto;
    }

    #contenedor_planes{
        margin-top: 40px;
    }

    .btn_plan{
        margin-top: 35px;
    }

    #titulo_paquetes{
        width: 90%;
    }

    #paquetes{
        flex-direction: column;
    }

    .obj_paquete{
        width: 50%;
        margin-bottom: 35px;
        align-items: center;
        justify-content: center;
    }

    .info_paquete{
        width: 160px;
        min-width: 160px;
    }
}

@media screen and (max-width:910px) {
    #menu{
        display: none;
    }

    #titulo_planes{
        width: 90%;
        font-size: 32px;
    }

    #contacto{
        flex-direction: column;
    }

    #caja_contacto{
        height: auto;
    }

    #img_contacto{
        margin-left: 0;
        margin-top: 25px;
    }
}

@media screen and (max-width:700px) {
    #lista_clientes{
        padding: 0px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .obj_beneficios{
        height: auto;
        min-height: auto;
    }
}

@media screen and (max-width:520px) {
    /* #btn_suscribirse{
        font-size: 16px;
    } */
}

@media screen and (max-width:500px) {
    #logo_inicial{
        width: 250px;
        height: 250px;
    }
    #p_logo_inicial{
        font-size: 40px;   
    }

    #caja_contacto{
        width: 100%;
        min-width: 100%;
    }
}

@media screen and (max-width:420px) {
    #logo_inicial{
        width: 200px;
        height: 200px;
    }
    #p_logo_inicial{
        font-size: 35px;   
    }
}

/* @media screen and (max-width:530px) {

} */