:root
{
    /*Colores*/
    --primario:                    #000000;
    --secundario:                 #fbb606;
    --terciario:                   #3B3B3B;
    --sombraPrimario:            rgb(0,0,0,0.1);
    --sombraSecundario:            rgb(251,182,6,0.5);
    --sombraLuz:            rgb(251,182,6,0.2);
    --sombra:            rgb(255,255,255,0.5);
    --fuentePrincipal:                                  "sukhumvitset";
    --fuenteBold:                                  "sukhumvitsetbold";
    --roboto:                                  "roboto";
    --opensans:                                  "opensans";
    --button-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

@font-face {
    font-family: 'sukhumvitset';
    src: url('fuentes/sukhumvitset.ttf')  format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sukhumvitsetbold';
    src: url('fuentes/sukhumvitsetbold.ttf')  format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('fuentes/roboto.ttf')  format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'opensans';
    src: url('fuentes/opensans.ttf')  format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--fuentePrincipal);
    -webkit-tap-highlight-color: transparent; /* iOS */
    -moz-outline-style:none; /* Firefox */
    outline: none; /* Todos los demás navegadores */
}

*::-webkit-scrollbar{
    display: none;
}

div{
    display: flex;
}

img{
    object-fit: contain;
}

html,body{
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

#contenedor{
    width: 100%;
    height: 100%;
    flex-direction: column;
    position: relative;
    
}

#menu{
    position: absolute;
    width: calc(100% - 22px);
    height: 43px;
    left: 0;
    top: 0;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 1));
    border-radius: 20px;
    z-index: 999;
    margin: 11px;
    margin-top: 7px;
    padding: 7px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#div_principal{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pie{
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 2.5px;
    background: var(--primario);
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 7777777;
    bottom: 0;
}

.contenedor_relative{
    width: 100%;
    height: auto;
    position: relative;
}

.seccion_merkav{
    width: 100%;
    height: auto;
    position: relative;
    padding: 34px;
}

#seccion_merkav{
    padding: 0px;
    flex-direction: row;
    background: #000000;
    min-height: 100%;
    padding-bottom: 34px;
    padding-right: 16px;
}


#contenedor_info_principal{
    width: 70%;
    height: auto;
    min-height: calc(100% - 102px);
    z-index: 11;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    align-self: flex-end;
    justify-self: flex-end;
    border-radius: 16px;
    padding: 16px;
    margin-top: 70px;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.23);
}

.contenedor_banner{
    width: 30%;
    height: auto;
    min-height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    position: absolute;
    opacity: 1;
    background: #000000;
}

.banner{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    position: absolute;
}

.degradado_banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit:fill;
    pointer-events: none; /* Para que la capa de degradado no interfiera con eventos del ratón */
  }

.caja_full_column{
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.caja_full_row{
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.logo_horizontal{
    width: auto;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.7s;
}

.logo_horizontal:hover{
    transform: scale(106%);
}

#caja_menu{
    width: auto;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.btn_menu{
    width: 93px;
    height: 100%;
    font-size: 14px;
    color: #000000;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    margin-right: 16px;
    font-family: var(--opensans);
    cursor: pointer;
    border-radius: 16px;
    border: none;
    transition: all 0.5s;
}

/* .btn_menu:hover{
    background: var(--sombraPrimario);
    transform: scale(103%);
} */


#btn_merkav{
    background: #000000;
    color: #ffffff;
}

#btn_login{
    background: var(--sombraSecundario);
    color: #ffffff;
    margin-right: 0px;
}

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

#caja_info_principal{
    width: 100%;
    height: 100%;
    flex-direction: row;
}

#caja_info_detalle{
    display: none;
    position: relative;
    opacity: 0;
}

#titulo_info_detalle{
    width: 100%;
    height: auto;
    font-size: 25px;
    color: var(--secundario);
    text-align: center;
    font-family: var(--roboto);
    margin-top: 7px;
    padding-right: 11px;
}

.keyword_b{
    font-family: var(--fuenteBold);
}

.fila_info_principal{
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.titulo_info_principal{
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 34px;
    color: #ffffff;
}

.obj_info_principal{
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 11px;
    align-items: center;
    cursor: pointer;
}

.obj_info_principal:hover .keyword{
    opacity: 1;
}

.obj_info_principal:hover .img_info_principal{
    transform: scale(106%);
}

.img_info_principal{
    width: 77px;
    height:77px;
    transition: transform 0.7s ease;
    pointer-events: none;
}

.p_info_principal{
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    font-family: var(--roboto);
    pointer-events: none;
    margin-top: 11px;
}

.keyword{
    height: 52px;
    min-height: 52px;
    color: var(--secundario);
    font-family: var(--fuenteBold);
    cursor: pointer;
    pointer-events: none;
    text-align: center;
    opacity: 0.8;
    transition: all 0.7s;
    margin-top: 11px;
    font-size: 18px;
}

.icono_volver{
    width: 43px;
    height: 43px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 7px;
    margin-left: 2.5px;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.7s;
}

.icono_volver:hover{
    opacity: 0.9;
}

#div_info_detalle{
    justify-content: center;
    align-items: center;
}

.img_info_detalle{
    width: 205px;
    min-width: 205px;
    height: 205px;
    min-height: 205px;
    object-fit: contain;
    margin: 11px;
}

#columna_detalle{
    align-items: center;
}

#p_info_detalle{
    width: 100%;
    height: auto;
    padding-right: 11px;
    margin-top: 16px;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
}

.keyword_2{
    color: var(--secundario);
    font-family: var(--fuenteBold);
    opacity: 1;
    transition: all 0.7s;
}

#seccion_beneficios{
    align-items: center;
    flex-direction: column;
    padding-top: 52px;
}

.contenedor_info_1{
    width: auto;
    height: auto;
    position: relative;
    flex-direction: row;
    margin-bottom: 25px;
    transition: all 0.7s;
    align-items: center;
}

.contenedor_info_2{
    width: auto;
    height: auto;
    position: relative;
    flex-direction: row;
    margin-bottom: 70px;
    transition: all 0.7s;
    align-items: center;
}

.div_info{
    width: 700px;
    height: 100%;
    align-items: center;
    padding-right: 34px;
    padding-left: 34px;
    position: relative;
}

.p_div_info{
    width: calc(100% - 68px);
    height: auto;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    text-align: center;
    position: absolute;
}

.div_img{
    width: 304px;
    height: 304px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.img_div_info{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    opacity: 0;
}

.btn_action{
    position: absolute;
    width: 160px;
    height: 34px;
    border-radius: 11px;
    background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    bottom: 0;
    border: #ffffff 1px solid;
    margin-bottom: 16px;
    z-index: 100;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transition: all 0.7s;
    font-family: var(--fuentePrincipal);
}

.btn_action:hover{
    opacity: 1;
    transform: scale(102%);
}

.btn_dorado{
    width: 160px;
    height: 43px;
    border-radius: 16px;
    color: #ffffff;
    background: var(--secundario);
    margin-top: 34px;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-family: var(--fuentePrincipal);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16), 0px 2px 2px rgba(0, 0, 0, 0.23);
    cursor: pointer;
    transition: all 0.7s;
}

.btn_dorado:hover{
    transform: scale(1.02);
}

#caja_sociales{
    flex-direction: row;
    align-items: center;
    position: absolute;
    right: 0;
}

.img_sociales{
    width: 22px;
    min-width: 22px;
    height: 22px;
    min-height: 22px;
    object-fit: contain;
    margin-left: 11px;
    margin-right: 11px;
    opacity: 0.7;
    transition: all 1s;
    cursor: pointer;
}

.p_logo_pie{
    font-size: 20px;
    color: var(--primario);
}

.p_logo_pie_2{
    font-size: 20px;
    color: #ffffff;
}

.logo_pie{
    width: auto;
    height: 43px;
    object-fit: contain;
    margin-left: 16px;
}

#seccion_planes{
    width: 100%;
    height: auto;
    align-items: center;
    flex-direction: column;
}

.titulo_seccion{
    width: 100%;
    height: auto;
    font-size: 43px;
    font-family: var(--fuenteBold);
    text-align: center;
    /* background: #000000; */
}

#tabla_planes{
    width: 77%;
    min-width: 77%;
    height: 601px;
    min-height: 601px;
    border-radius: 11px;
    border: solid 0.5px var(--sombraPrimario);
    box-shadow: 0px 3px 7px rgba(0,0,0,0.19), 0px 2px 3px rgba(0,0,0,0.23);
    margin: 16px;
    margin-top: 34px;
}

.columna_planes{
    width: 100%;
    height: 100%;
    flex-direction: column;
}

#obj_cabeza_inicio{
    border-radius: 11px 0px 0px 0px;
    transition: all;
}

#obj_cabeza_final{
    border-radius: 0px 11px 0px 0px;
}

.tabla_obj{
    width: 100%;
    height: 100%;
    border-bottom: solid 0.5px var(--primario);
}

.tabla_obj_final{
    width: 100%;
    height: 100%;
    border-bottom: none;
}

.obj_columna{
    display: flex;
    border-right: solid 0.5px var(--primario);
    padding: 7px;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--roboto);
    cursor: pointer;
    transition: all 0.7s;
}

.obj_columna:hover .icono_check{
    transform: scale(1.3);
    opacity: 1;
}

.obj_columna_final{
    display: flex;
    padding: 7px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--roboto);
    cursor: pointer;
}

.obj_columna_final:hover .icono_check{
    transform: scale(1.3);
    opacity: 1;
}

.tabla_obj_cabeza{
    width: 100%;
    height: 100%;
    background: var(--sombraSecundario);
    border-bottom: solid 0.5px var(--primario);
    font-family: var(--fuenteBold);
    transition: all 0.7s;
}

.columna_color{
    background: var(--sombraLuz);
}

.icono_check{
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    object-fit: contain;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.19), 0px 1px 3px rgba(0,0,0,0.23);
    background: var(--secundario);
    transition: all 0.7s;
    pointer-events: none;
    opacity: 0;
}

#seccion_acerca_de{
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 106px;
}

#contenedor_ods{
    width: 403px;
    height: auto;
    flex-direction: column;
    opacity: 0;
}

#div_acerca_de{
    width: 100%;
    height: auto;
    flex-direction: row;
    margin-top: 25px;
}

#header_ods{
    height: 61px;
    margin-bottom: 25px;
}

#img_ods{
    width: 304px;
    height: 304px;
    border-radius: 50%;
    border: solid 1px var(--sombraLuz);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.23);
}

.flecha{
    width: 52px;
    height: 52px;
    padding: 11px;
    border-radius: 50%;
    opacity: 0.52;
    cursor: pointer;
    object-fit: cover;
    transition: all 1s;
}

.flecha:hover{
    opacity: 1;
}

#caja_ods{
    flex-direction: column;
    align-items: center;
}

#div_img_ods{
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

#titulo_ods{
    width: 100%;
    font-family: var(--roboto);
    color: #000000;
    font-size: 37px;
    text-align: center;
    opacity: 0;
    /* padding-top: 11px;
    padding-bottom: 11px;
    border-top: solid 2px var(--secundario);
    border-bottom: solid 2px var(--secundario); */
}

#msj_ods{
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-top: 16px;
    font-family: var(--fuentePrincipal);
}

#info_acerca_de{
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-left: 25px;
    opacity: 0;
}

#texto_ods{
    font-family: var(--opensans);
    font-size: 20px;
}

.bold_ods{
    font-family: var(--fuenteBold);
    font-size: 23px;
}

.keyword_ods{
    font-family: var(--roboto);
    color: var(--secundario);
    font-size: 24px;
    text-decoration: underline;
    cursor: pointer;
}

.full_screen{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 777;
}

#portada{
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 7777777;
}

.caja_logo{
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.caja_logo{
    flex-direction: row;
    align-items: center;
    height: 100%;
}


.nombre_logo{
    font-size: 106px;
    color: var(--primario);
    margin-left: 34px;
}

.logo_portada{
    width: 205px;
    height: 205px;
    object-fit: contain;
}

.p_logo_pie{
    font-size: 20px;
    color: var(--primario);
}

.p_logo_pie_2{
    font-size: 20px;
    color: #ffffff;
}

.logo_pie{
    height: 43px;
    object-fit: contain;
    margin-left: 16px;
}

.caja_logo_2{
    width: auto;
    height: min-content;
    min-height: min-content;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 1.6s;
    cursor: pointer;
}

.caja_logo_2:hover{
    opacity: 1;
}

#logo_portada{
    opacity: 0;
}

#p_logo_portada{
    opacity: 0;
}

.logo_pie{
    opacity: 1;
}

.p_logo_pie{
    opacity: 1;
}

#caja_pie_portada{
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 2.5px;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 777;
    bottom: 0;
}

#pie_portada{
    opacity: 0;
}

.visible {
    left: 100%;
}

.linea_info{
    width: 7px;
    height: 0%;
    background: var(--secundario);
}

#p_div_info_1{
    left: -100%;
    opacity: 0;
}

#p_div_info_2{
    right: -100%;
    opacity: 0;
}

#p_div_info_3{
    left: -100%;
    opacity: 0;
}

#p_div_info_4{
    right: -100%;
    opacity: 0;
}

#p_div_info_5{
    left: -100%;
    opacity: 0;
}

.linea_planes{
    width: 0px;
    height: 2px;
    background: var(--secundario);
    transition: all 0.7s;
}

#seccion_login{
    opacity: 0;
    z-index: -1;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 7px;
    border-top: solid 1px var(--secundario);
    align-items: center;
    justify-content: center;
}

#seccion_registro{
    width: 100%;
    height: 100%;
    flex-direction: column;
    opacity: 0;
    z-index: -1;
    background: #ffffff;
    border-top: solid 1px var(--secundario);
    align-items: center;
    justify-content: center;
}

.logo_login{
    width: 205px;
    height: 205px;
    object-fit: contain;
    margin-top: 16px;
}

.caja_login{
    flex-direction: column;
    align-items: center;
    height: min-content;
    min-height: min-content;
    transition: all 1s;
}

.input_login{
    width: 403px;
    min-width: 403px;
    height: 44px;
    border: none;
    border-bottom: solid 1px var(--secundario);
    outline: none;
    color: var(--primario);
    font-size: 34px;
    margin-top: 25px;
    text-align: center;
}


.caja_principal{
    width: 100%;
    height: 100%;
    padding-top: 25px;
    border-top: solid 1px var(--secundario);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.msj_registro{
    color: red;
    font-size: 22px;
    height: fit-content;
    min-height: fit-content;
    margin-top: 2.5px;
    margin-bottom: 11px;
}

.msj_registro_responsive{
    color: red;
    font-size: 16px;
    height: fit-content;
    min-height: fit-content;
    width: 93%;
    text-align: start;
    margin-top: 2.5px;
    display: none;
}

#msj_registro{
    visibility: hidden;
}

.btn_registro{
    width: 160px;
    height: 43px;
    border-radius: 11px;
    background: var(--secundario);
    border: #ffffff 1px solid;
    margin: 25px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.7s;
    font-family: var(--fuentePrincipal);
}

.btn_registro:hover{
    transform: scale(102%);
}

#msj_login{
    margin-top: 25px;
    display: none;
}


.olvide_pass{
    font-size: 25px;
    color: var(--primario);
    transition: all 1s;
    opacity: 0.7;
    margin-top: 34px;
    font-family: var(--opensans);
    cursor: pointer;
    transition: all 0.5s;
}

.olvide_pass:hover{
    transform: scale(1.02);
}

#caja_cambiar_pass{
    opacity: 0;
    z-index: -1;
    display: none;
}

#msj_cambiar{
    margin-top: 25px;
    display: none;
}

.btn_cerrar{
    width: 34px;
    height: 34px;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16), 0px 2px 2px rgba(0, 0, 0, 0.23);
    z-index: 777;
    padding: 11px;
    border-radius: 50%;
    background: var(--secundario);
    margin-right: 11px;
    margin-top: 7px;
    cursor: pointer;
    transition: all 0.7s;
}

.btn_cerrar:hover{
    transform: scale(102%);
}

.formulario{
    width: 100%;
    height: min-content;
    min-height: min-content;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.caja_formulario{
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    padding-top: 11px;
    padding-bottom: 70px;
}

#caja_formulario_registro{
    justify-content: center;
}

.columna_form{
    flex-direction: column;
    align-items: center;
    padding: 25px;
    padding-top: 0px;
    padding-bottom: 11px;
    height: 100%;
}

#columna_form_1{
    border-right: solid 1px var(--secundario);
}

#columna_form_3{
    border-left: solid 1px var(--secundario);
}

.entrada{
    width: 403px;
    min-width: 403px;
    height: 34px;
    border: none;
    border-bottom: solid 1px var(--secundario);
    outline: none;
    color: var(--primario);
    font-size: 25px;
    margin-top: 16px;
}

.titulo_registro{
    font-size: 25px;
    line-height: 25px;
    color: var(--primario);
    width: 100%;
    margin-bottom: 11px;
    text-align: center;
    font-family:var(--fuenteLectura);
    cursor: pointer;
}

.select_registro{
    width: 403px;
    min-width: 403px;
    height: 34px;
    border: none;
    border-bottom: solid 1px var(--secundario);
    background: none;
    color: var(--primario);
    font-size: 25px;
    margin-top: 16px;
}

#caja_terminos{
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: min-content;
    min-height: min-content;
    margin-top: 11px;
}

#check_terminos{
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border: solid 2.5px var(--secundario);
    border-radius: 7px;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 1s;
    opacity: 0.7;
    cursor: pointer;
}

#check_terminos:hover{
    width: 26px;
    min-width: 26px;
    height: 26px;
    min-height: 26px;
    opacity: 1;
}

#img_terminos{
    width: 11px;
    min-width: 11px;
    height: 11px;
    min-height: 11px;
    object-fit: contain;
    z-index: 777;
    pointer-events: none;
}


#p_terminos{
    width: auto;
    font-size: 22px;
    color: var(--primario);
    margin-left: 16px;
}

#link_terminos{
    color: var(--secundario);
    cursor: pointer;
    text-decoration: underline;
    cursor: pointer;
}


.msj_registro{
    color: red;
    font-size: 22px;
    height: fit-content;
    min-height: fit-content;
    margin-top: 11px;
    margin-bottom: 11px;
}

.msj_registro_responsive{
    color: red;
    font-size: 16px;
    height: fit-content;
    min-height: fit-content;
    width: 93%;
    text-align: start;
    margin-top: 2.5px;
    display: none;
}

#msj_registro{
    visibility: hidden;
}

#div_btn_responsive{
    width: 43px;
    height: 43px;
    right: 0;
    top: 0;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 1));
    border-radius: 20px;
    z-index: 999;
    margin: 11px;
    margin-top: 7px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    display: none;
}

#btn_responsive {
    width: 22px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.linea_btn {
    width: 100%;
    height: 2.5px;
    min-height: 2.5px;
    border-radius: 2.5px;
    background: #000000;
    pointer-events: none;
    transition: all 0.7s;
    transform-origin: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.23);
}

#caja_botones_responsive{
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.btn_plan_responsive{
    width: 77px;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    color: var(--primario);
    font-family: var(--fuenteBold);
    padding: 2.5px;
    border-radius: 7px;
    background: none;
    margin: 11px;
    cursor: pointer;
    transition: all 0.5s;
}

.btn_plan_responsive:hover{
    transform: scale(1.03);
}

#btn_plan_solidary_visual{
    background: var(--secundario);
}

#menu_responsive{
    background: #ffffff;
    z-index: -1;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 77px;
    padding-top: 43px;
}

.btn_menu_responsive{
    width: 205px;
    height: 52px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 7px;
    font-family: var(--fuenteBold);
    cursor: pointer;
    transition: all 0.5s;
}

#btn_menu_responsive_merkav{
    background: #000000;
    color: #ffffff;
    border-radius: 34px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); /* Definición de la sombra */    
}

.btn_menu_responsive:hover{
    transform: scale(1.01);
}

#btn_menu_responsive_login{
    background: var(--secundario);
    color: #ffffff;
    border-radius: 34px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); /* Definición de la sombra */    
}

#caja_confirmacion{
    z-index: -1;
    opacity: 0;
}

.confirmacion{
    width: 100%;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.div_confirmacion{
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.titulo_confirmacion{
    font-size: 43px;
    color: var(--primario);
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.p_confirmacion{
    font-size: 25px;
    color: var(--primario);
    width: 100%;
    text-align: center;
    margin-top: 11px;
}

.correo_confirmacion{
    font-size: 25px;
    color: var(--secundario);
    width: 100%;
    text-decoration: underline;
    text-align: center;
    margin-top: 11px;
}

@media screen and (max-width:1080px){
    .div_info{
        width: 430px;
    }

    .p_div_info{
        font-size: 25px;
    }
}

@media screen and (max-width:920px){
    .btn_menu{
        width: 77px;
        font-size: 13px;
    }

    .entrada{
        width: 340px;
        min-width: 340px;
        font-size: 22px;
    }

    .select_registro{
        width: 340px;
        min-width: 340px;
        font-size: 22px;
    }
}

@media screen and (max-width:900px){
    #seccion_merkav{
        padding-bottom: 34px;
        min-height: auto;
        align-items: center;
        justify-content: center;
        padding-right: 0px;
    }

    .contenedor_relative{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor_banner{
        width: 100%;
        height: 340px;
        min-height: 340px;
        position: relative;
    }
    
    .banner{
        height: 340px;
        min-height: 340px;
    }

    .degradado_banner{
        display: none;
    }

    #contenedor_info_principal{
        position: relative;
        width: 93%;
        margin: 0px;
        margin-top: 25px;
        align-self: center;
    }

    #tabla_planes{
        width: 93%;
    }

    #titulo_ods{
        font-size: 34px;
    }

    .texto_ods{
        font-size: 18px;
    }

    #contenedor_ods{
        width: 304px;
    }

    #img_ods{
        width: 250px;
        height: 250px;
    }

    #msj_ods{
        font-size: 18px;
    }
}

@media screen and (max-width:830px){
    .btn_menu{
        font-size: 13px;
    }

    .div_img{
        width: 250px;
        height: 250px;
    }

    .tabla_obj{
        font-size: 13px;
    }

    .entrada{
        width: 304px;
        min-width: 304px;
    }

    .logo_portada{
        width: 160px;
        height: 160px;
    }

    .nombre_logo{
        font-size: 70px;
    }

    #caja_menu{
        display: none;
    }

    #div_btn_responsive{
        display: flex;
    }

    #menu{
        width: 43px;
    }

    #div_acerca_de{
        flex-direction: column;
        align-items: center;
    }

    #contenedor_ods{
        width: 100%;
    }

    #msj_ods{
        width: 502px;
    }

    #info_acerca_de{
        padding: 0px;
        margin-top: 25px;
    }

    #texto_ods{
        padding: 11px;
        font-size: 16px;
    }

    .keyword_ods{
        font-size: 20px;
    }

    .bold_ods{
        font-size: 20px;
    }
}

@media screen and (max-width:730px){
    #seccion_merkav{
        min-height: auto;
    }

    #caja_info_principal{
        flex-direction: column;
    }

    .fila_info_principal{
        flex-direction: row;
    }

    .img_info_principal{
        width: 106px;
        height: 106px;
    }

    .keyword{
        height: 61px;
        min-height: 61px;
        font-size: 22px;
        margin-top: 16px;
    }

    .p_info_principal{
        font-size: 20px;
        margin-top: 16px;
    }

    .div_info{
        width: 340px;
    }

    #tabla_planes{
        height: 777px;
        min-height: 777px;
    }

    .formulario{
        flex-direction: column;
    }

    .columna_form{
        width: 100%;
        margin-top: 25px;
    }

    .entrada{
        width: 93%;
    }

    .select_registro{
        width: 93%;
    }

    #caja_terminos{
        width: 93%;
    }
}

@media screen and (max-width:666px){
    .caja_logo{
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    .logo_portada{
        width: 205px;
        height: 205px;
    }

    .nombre_logo{
        font-size: 52px;
        margin-left: 0px;
        margin-top: 16px;
    }
    
    .contenedor_banner{
        height: 250px;
        min-height: 250px;
    }

    .banner{
        height: 250px;
        min-height: 250px;
    }

    .fila_info_principal{
        flex-direction: column;
    }

    .img_info_principal{
        width: 160px;
        height: 160px;
    }

    .keyword{
        height: auto;
        min-height: auto;
        font-size: 30px;
        margin-top: 16px;
    }

    .p_info_principal{
        font-size: 25px;
    }

    .contenedor_info_1{
        flex-direction: column-reverse;
        width: 100%;
        height: auto;
        margin-bottom: 25px;
    }

    .contenedor_info_2{
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-bottom: 25px;
    }

    .linea_info{
        width: 0%;
        height: 7px;
        min-height: 3.4px;
        max-height: 3.4px;
    }

    .div_info{
        width: 100%;
        height: 250px;
        padding: 11px;
    }

    .div_img{
        width: 100%;
    }

    .img_div_info{
        width: 100%;
        object-fit: cover;
        border-radius: 13px;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); /* Definición de la sombra */    
    }

    #seccion_beneficios{
        padding: 16px;
    }

    #img_info_3,#img_info_4,#img_info_5{
        object-position: 0% 20%;
    }

    .titulo_seccion{
        font-size: 34px;
    }
}

@media screen and (max-width:600px){
    #div_info_detalle{
        flex-direction: column;
        align-items: center;
    }

    .logo_login{
        width: 160px;
        height: 160px;
    }

    .input_login{
        font-size: 25px;
    }

    .olvide_pass{
        margin-top: 11px;
    }
}

@media screen and (max-width:580px){
    .img_info_principal{
        width: 133px;
        min-width: 133px;
        height: 133px;
        min-height: 133px;
    }

    #seccion_planes{
        padding: 16px;
    }

    .pie{
        height: auto;
        flex-direction: column-reverse;
        padding: 11px;
    }

    #caja_pie_portada{
        height: auto;
        flex-direction: column-reverse;
        padding: 11px;
    }

    #caja_sociales{
        width: 100%;
        position: relative;
        justify-content: flex-end;
    }

    .caja_logo_2{
        margin-top: 16px;
    }

    #msj_ods{
        width: 100%;
    }

    #info_acerca_de{
        padding-top: 16px;
        border-top: solid 1px var(--sombraSecundario);
    }

    #menu_responsive{
        padding-bottom: 133px;
    }

    .btn_menu_responsive{
        width: 160px;
        height: 43px;
        font-size: 25px;
    }

    .caja_formulario{
        padding-bottom: 93px;
    }
}


@media screen and (max-width:500px){
    .p_div_info{
        font-size: 22px;
    }

    .div_img{
        height: 205px;
        min-height: 205px;
    }

    .img_info_principal{
        width: 106px;
        min-width: 106px;
        height: 106px;
        min-height: 106px;
    }

    #titulo_ods{
        font-size: 25px;
    }

    #seccion_acerca_de{
        padding: 11px;
    }

    #img_ods{
        width: 160px;
        min-width: 160px;
        height: 160px;
        min-height: 160px;
    }

    #div_principal{
        height: 100%;
    }

    #info_acerca_de{
        padding-bottom: 93px;
    }
}

@media screen and (max-width:450px){
    .tabla_obj_cabeza{
        display: none;
    }
    .obj_columna{
        border-right:none;
    }

    .columna_planes{
        width: 70px;
    }
    
    #columna_beneficios{
        width: 100%;
    }

    #caja_botones_responsive{
        display: flex;
    }

    #tabla_planes{
        margin-top: 16px;
    }

    .obj_columna{
        height: 43px;
        min-height: 43px;
        font-size: 16px;
    }

    #tabla_planes{
        height: auto;
        min-height: auto;
    }

    #inicial_responsive{
        border-radius: 11px 0px 0px 0px;
    }

    .titulo_info_principal{
        font-size: 25px;
    }
}   

@media screen and (max-width:420px){
    .p_info_principal{
        font-size: 22px;
    }

    #titulo_info_principal{
        font-size: 25px;
    }

    .keyword{
        font-size: 25px;
    }

    .div_info{
        height: 304px;
    }

    .btn_plan_responsive{
        width: 77px;
        font-size: 14px;
        margin: 3.4px;
    }
}

@media screen and (max-height:500px){
    #seccion_merkav{
        padding-bottom: 34px;
        min-height: auto;
        align-items: center;
        justify-content: center;
        padding-right: 0px;
    }

    #div_btn_responsive{
        display: none;
    }

    .contenedor_relative{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor_banner{
        width: 100%;
        height: 340px;
        min-height: 340px;
        position: relative;
    }
    
    .banner{
        height: 340px;
        min-height: 340px;
    }

    .degradado_banner{
        display: none;
    }

    #contenedor_info_principal{
        position: relative;
        width: 93%;
        margin: 0px;
        margin-top: 25px;
        align-self: center;
    }

    #tabla_planes{
        width: 93%;
    }

    #titulo_ods{
        font-size: 34px;
    }

    .texto_ods{
        font-size: 18px;
    }

    #contenedor_ods{
        width: 304px;
    }

    #img_ods{
        width: 250px;
        height: 250px;
    }

    #msj_ods{
        font-size: 18px;
    }

    .entrada{
        width: 340px;
        min-width: 340px;
    }
}