:root {
    /*Colores*/
    --primario: rgb(255, 102, 0);
    --sombraPrimario: rgb(0, 0, 0, 0.2);
    --sombraOscura: rgb(0, 0, 0, 0.7);
    --sombraClara: rgb(192, 192, 192, 0.07);
    --sombraOscura: rgb(0, 0, 0, 0.7);
    --rojo: rgb(211, 47, 47);
    --verde: rgb(56, 142, 60);
    --dorado: rgb(250, 181, 5);
    --link: rgb(24, 134, 185);
    --gris: rgb(0, 0, 0, 0.7);
    --diamante: rgb(207, 228, 238);
    --sombraDiamante: rgb(207, 228, 238, 0.25);

    --gradianteVerde: linear-gradient(to right,
            rgba(0, 200, 0, 0.6),
            /* Verde claro */
            rgba(0, 200, 0, 0.8),
            /* Verde medio */
            rgb(0, 200, 0)
            /* Verde intenso */
        );

    --gradianteNaranja: linear-gradient(to right,
            rgba(255, 165, 0, 0.6),
            /* Naranja claro */
            rgba(255, 165, 0, 0.8),
            /* Naranja medio */
            rgb(255, 165, 0)
            /* Naranja intenso */
        );

    --gradianteRojo: linear-gradient(to right,
            rgba(211, 47, 47, 0.6),
            /* Rojo claro */
            rgba(211, 47, 47, 0.8),
            /* Rojo medio */
            rgb(211, 47, 47)
            /* Rojo intenso */
        );

    --gradianteDorado: linear-gradient(to right,
            rgba(250, 181, 5, 0.6),
            /* Dorado claro */
            rgba(250, 181, 5, 0.8),
            /* Dorado medio */
            rgb(250, 181, 5)
            /* Dorado intenso*/
        );

    --sukhumvitset: "sukhumvitset";
    --monserrat_bold: "monserrat_bold";
    --roboto_bold: "roboto_bold";
}

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

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

@font-face {
    font-family: 'roboto_bold';
    src: url('../fuentes/roboto_bold.ttf') format('opentype');
    /* src: url('/vista/css/../fuentes/helveticaneue.ttf')  format('truetype'); */
    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(--sukhumvitset);
    -webkit-tap-highlight-color: transparent;
    /* iOS */
    -moz-outline-style: none;
    outline-style: none;
    /* Firefox */
    outline: none;
    /* Todos los demás navegadores */
}

div {
    display: flex;
}

img {
    object-fit: contain;
}

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: hidden;
}

#contenedor{
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding-bottom: 77px;
    overflow-y: auto;
}

.head {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding: 7px;
    border-bottom: solid 1px var(--sombraDiamante);
}

.logo {
    width: 133px;
    height: auto;
}


.caja {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
}

#valuathor_info{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#div_info{
    width: 700px;
    min-width: 700px;
    height: auto;
    flex-direction: column;
    margin-left: 43px;
}

#img_principal{
    width: 340px;
    height: 340px;
}

#formulario{
    width: 700px;
    min-width: 700px;
    height: auto;
    flex-direction: column;
    margin-top: 25px;
    border-top: solid 1px var(--sombraDiamante);
}

#titulo_formulario{
    width: 100;
    height: auto;
    font-size: 25px;
    font-family: var(--roboto_bold);
}

#p_formulario{
    width: 100;
    height: auto;
    font-size: 18px;
    margin-top: 11px;
}

.link{
    color: var(--primario);
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.5s;
    font-family: var(--roboto_bold);
}

.link:hover{
    opacity: 1;
    transform: scale(1.02);
}

.etiqueta{
    width: 100;
    height: auto;
    font-size: 20px;
    font-family: var(--roboto_bold);
    margin-top: 43px;
}

#contenedor_tipos{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-top: 34px;
}

.obj_tipo{
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin-right: 52px;
    cursor: pointer;
    transition: all 0.7s;
}

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

#tipo_desktop{
    opacity: 1;
}

.img_tipo{
    width: 77px;
    min-width: 77px;
    height: 77px;
    min-height: 77px;
    border-radius: 50%;
    box-shadow: 0px 1px 2.5px rgba(0, 0, 0, 0.19), 0px 1px 3px rgba(0, 0, 0, 0.23);
    pointer-events: none;
}

.p_tipo{
    width: auto;
    height: auto;
    font-size: 22px;
    text-align: center;
    margin-top: 16px;
    pointer-events: none;
}

.div_formulario{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-top: 11px;
}

.obj_estado{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-right: 34px;
}

.check_estado{
    width: 22px;
    height: 22px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 1px var(--primario);
    transition: all 0.5s;
    cursor: pointer;
}

.check_estado:hover{
    transform: scale(1.1);
}

.punto_check{
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    border-radius: 50%;
    background: var(--primario);
    pointer-events: none;
}

.p_check_estado{
    width: 100;
    height: auto;
    font-size: 18px;
    margin-left: 7px;
}

#caja_tiempo{
    display: none;
    width: 100%;
    height: auto;
    flex-direction: column;
}

.input_tiempo{
    width: 70px;
    height: auto;
    border: solid 0.5px var(--sombraOscura);
    border-radius: 7px;
    text-align: center;
    outline: none;
    font-size: 18px;
    margin-right: 11px;
}

.p_tiempo{
    width: 52px;
    height: auto;
    font-size: 18px;
    margin-right: 11px;
}

#text_prompt{
    width: 100%;
    height: 160px;
    border: solid 0.5px var(--sombraPrimario);
    border-radius: 7px;
    outline: none;
    margin-top: 11px;
    resize: none;
    padding: 11px;
    font-size: 18px;
}

.boton{
    width: 100%;
    height: 52px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 22px;
    font-family: var(--roboto_bold);
    border-radius: 7px;
    background: #000000;
    margin-top: 25px;
    cursor: pointer;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0, 0.2));
    box-shadow: 0px 1px 2.5px rgba(0, 0, 0, 0.19), 0px 1px 3px rgba(0, 0, 0, 0.23);
    transition: all 0.7s;
}

.boton:hover{
    filter: drop-shadow(0px 0px 5px rgba(0,0,0, 0.4));
    transform: scale(1.002);
    opacity: 1;
}

#btn_contexto{
    display: none;
    width: 250px;
    max-width: 250px;
    min-width: 250px;
}

#btn_renovar{
    display: none;
    width: 360px;
    height: 52px;
    justify-content: center;
    align-items: center;
    background: var(--primario);
    color: #ffffff;
    font-family: var(--roboto_bold);
    margin-top: 34px;
    padding: 16px;
    font-size: 22px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.5s;
}

#btn_renovar:hover{
    transform: scale(1.06);
}

#div_descripcion{
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30.4px;
}

#etiqueta_descripcion{
    margin-top: 0px;
}

#p_caracteres{
    width: auto;
    height: auto;
    color: var(--sombraOscura);
    font-size: 16px;
    font-family: var(--monserrat_bold);
}

/*Comienza barra contacto*/

#contacto {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 11px;
    background: linear-gradient(
        rgba(255, 255, 255, 0), /* Totalmente transparente arriba */
        rgba(255, 255, 255, 0.4), /* Más transparente */
        rgba(255, 255, 255, 0.7) /* Menos transparente abajo */
    );
    backdrop-filter: blur(0.7px); /* Desenfoque ligero */
    -webkit-backdrop-filter: blur(0.7px); /* Soporte para navegadores basados en WebKit */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Asegúrate de que esté encima de otros elementos */
}

.obj_contacto {
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-left: 43px;
    cursor: pointer;
    transition: all 0.5s;
}

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

.icono_contacto {
    width: 30.4px;
    height: 30.4px;
    pointer-events: none;
}

.p_contacto {
    display: none;
    width: auto;
    height: auto;
    font-size: 22px;
    font-family: var(--roboto_bold);
    margin-left: 11px;
    pointer-events: none;
}

#caja_enviando{
    display: none;
    width: 70%;
    height: auto;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

#spot_video {
    width: 430px;
    height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--sombraPrimario);
    border-radius: 16px;
    padding: 16px;
    font-family: var(--roboto_bold);
    text-align: center;
    margin-top: 25px;
    font-family: 25px;
}

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

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

#icono_titulo_enviando{
    width: 34px;
    height: 34px;
}

#titulo_enviando{
    width: auto;
    height: auto;
    font-size: 25px;
    font-family: var(--roboto_bold);
    margin-left: 25px;
    text-align: center;
}

#p_enviando{
    width: 100%;
    height: auto;
    font-size: 20px;
    margin-top: 25px;
    text-align: center;
}

#contenedor_select_pais{
    display: none;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    pointer-events: none;
}

.negritas{
    color: #000000;
    text-decoration: underline;
    opacity: 0.8;
    transition: all 0.5s;
    font-family: var(--roboto_bold);
}

#div_enviar{
    display: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    opacity: 0;
}

#input_correo{
    width: 340px;
    min-width: 340px;
    height: auto;
    font-size: 22px;
    border: none;
    border-bottom: solid 1px var(--primario);
    padding-bottom: 2.5px;
    text-align: center;
}

#div_terminos{
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    margin-top: 34px;
}

#btn_terminos{
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 2px var(--primario);
    cursor: pointer;
    transition: all 0.7s;
}

#btn_terminos:hover{
    transform: scale(1.06);
}

#icono_terminos{
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    pointer-events: none;
}

#p_terminos{
    width: auto;
    height: auto;
    font-size: 18px;
    margin-left: 34px;
    text-align: center;
}

#btn_enviar{
    display: none;
    width: 430px;
    min-width: 430px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--monserrat_bold);
    color: #ffffff;
    background: #000000;
    border-radius: 7px;
    margin-top: 34px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16), 0px 1px 3px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: all 0.7s;
    cursor: pointer;
}

#btn_enviar:hover{
    transform: scale(1.01);
}

.invalido{
    color: var(--rojo);
    text-decoration: underline;
    font-family: var(--roboto_bold);
}

.valido{
    color: var(--verde);
    text-decoration: underline;
    font-family: var(--roboto_bold);
}

@media screen and (max-width:1080px){
    #img_principal{
        width: 250px;
        min-width: 250px;
        height: 250px;
        min-height: 250px;
    }

    #div_info{
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width:880px){
    #formulario{
        width: 100%;
        min-width: auto;
    }

    .caja{
        padding-left: 25px;
        padding-right: 25px;
    }
}

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

    #div_info{
        margin-left: 0px;
        margin-top: 52px;
    }

    #caja_enviando{
        width: 100%;
        padding: 16px;
    }
}

@media screen and (max-width:560px){
    #div_titulo_enviando{
        flex-direction: column-reverse;
    }

    #titulo_enviando{
        margin-left: 0px;
    }

    #icono_titulo_enviando{
        margin-top: 25px;
    }

    #p_enviando{
        margin-top: 0px;
    }
}

@media screen and (max-width:520px){
    .contenedor{
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (max-width:502px){
    .obj_tipo{
        margin: 0px;
    }
    
    #contenedor_tipos{
        justify-content: space-around;
    }

    #video_anuncio{
        width: 100%;
    }

    #btn_enviar{
        width: 100%;
        min-width: auto;
    }

    #contenedor_select_pais{
        width: 93%;
        min-width: 93%;
    }
}

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

    .obj_tipo{
        width: 100%;
        flex-direction: row;
        align-items: center;
        margin-top: 43px;
    }

    .p_tipo{
        margin-left: 25px;
    }

    #contenedor_tipos{
        margin-top: 0px;
    }

    #spot_video {
        width: 100%;
    }
}