:root{
    /* Variables usadas menos de 700px */
    --Color-Grdiente-Rojo:linear-gradient(
        90deg,
        rgba(147,0,0,1) 0%,
        rgba(145,101,101,1) 100%
    );

    --Tamaño-Titulos: clamp(20px, 5vw, 52px);
    --Tamaño-parrafos: clamp(14px, 3vw, 23px);

    /* Variables usadas mas de 700px */
    --tamaño-titulos: clamp(14px, 5vw, 40px);
    --tamaño-parrafos: clamp(14px, 3vw, 16px);
}

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Roboto", sans-serif;
}

/* Barra de navegacion */
/* .header{
    background-color: #000000;
}

.header_nav{
    background-color: #161616;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.header_nav_imagen{
    text-align: center;
    position: fixed;
    padding-top: 5px;
    width: 100vw;
    background-color: #161616;
    z-index: 2;
    border-radius: 0 0 50px 50px;
}

.header_nav_imagen .imagen{
    width: 60%;
    height: 75%;
    max-width: 180px;
    max-height: 40px;
    cursor: pointer;
}

.header_nav_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 7px;
    padding-top: 55px;
}

.header_nav_container a{
    text-decoration: none;
    color: white;
    font-size: clamp(10px, 3vw, 16px);
    padding: 2px 10px;
    border-radius: 10px;
}

.header_nav_container span{
    font-size: clamp(16px, 6vw, 22px);
    font-weight: bold;
    background: var(--Color-Grdiente-Rojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}


.header_nav_container a:hover{
    background-color: rgba(255, 255, 255, 0.63);
    color: black;
} */


.header{
    background-color: #000000;
}

.header_nav{
    background-color: #161616;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    --imagen-menu: url('list\ \(1\).svg');
    --traslado-menu: translate(-100%);
    padding: 0 15px;
}

.header_nav:has(.nav_input:checked){
    --traslado-menu: translate(0);
    --imagen-menu: url('x-circle.svg');
}

.header_nav_imagen{
    text-align: center;
    padding-top: 5px;
}

.header_nav_imagen .imagen{
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 40px;
    cursor: pointer;
}

.nav__list{
    transform: var(--traslado-menu);
    list-style: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.82);
    inset: 0;
    padding: 1.5rem 5%;
    display: grid;
    align-content: center;
    justify-content: center;
    gap:20px;
    text-align: center;
    transition: transform 0.5s;
}

.header_nav_imagen, .nav_togle{
    z-index: 10;
}

.nav_togle{
    width: 30px;
    height: 30px;
    background-image: var(--imagen-menu);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: background-image 0.5s;
}

.nav_input{
    display: none;
}

.nav__item a{
    text-decoration: none;
    color: white;
    font-size: clamp(16px, 3vw, 20px);
    padding: 2px 10px;
    border-radius: 10px;
}

.nav__item span{
    font-size: clamp(22px, 6vw, 26px);
    font-weight: bold;
    background: var(--Color-Grdiente-Rojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
}


.nav__item a:hover{
    background-color: rgba(255, 255, 255, 0.63);
    color: black;
}

/* seccion contactanos */
.seccion_contactanos{
    background-color: black;
    color: white;
    padding:60px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

.seccion_contactanos .imagen_barras_superior{
    position: absolute;
    width: 70px;
    height: 100px;
    padding-left: 10px;
    top: 30px;
    left: -20px;

}

.seccion_contactanos_contenedor{
    display: flex;
    flex-direction: column;
    background-color: #1a1a1ac7;
    padding: 40px 12px;
    width: 90%;
    align-self: center;
    gap: 30px
}

.seccion_contactanos_contenedor .contenedor_texto{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    z-index: 1;
}

.contenedor_texto h1{
    font-size: clamp(16px, 5vw, 52px);
}

.contenedor_texto p{
    font-size: clamp(14px, 3vw, 25px);
}

.seccion_contactanos_contenedor_formulario{
    display: flex;
    flex-direction: column;
}

.contenedor_formulario{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
}

.campo{
    font-size: clamp(10px, 3vw, 20px);
    padding: 2px 0;
    padding-left: 7px;
    width: 50vw;
    height: 3.5vh;
    max-width: 220px;
    border-radius: 10px;
    background-color: #292929;
    color: #ffffff86;

}

.submit{
    color: white;
    border: 1px solid gray;
    padding: 5px 2px;
    border-radius: 10px;
    background: var(--Color-Grdiente-Rojo);
    font-weight: bold;
    font-size: clamp(10px, 3vw, 14px);
    width: 100%;
    max-width: 160px;
    align-self: center;
}

.submit:hover{
    color: rgb(255, 255, 255);
    background: rgba(79, 78, 78, 0.76);
}

.seccion_contactanos .imagen_barras_inferior{
    position: absolute;
    width: 70px;
    height: 100px;
    top: 75%;
    right: -2%;
}

/* pie de pagina */
footer{
    background-color: #161616;
    color: white;
    text-align: center;
    padding-bottom: 20px;
    overflow: hidden;
}

.footer_contenedor{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.footer_contenedor_imagen{
    width: 100%;
    height: 100%;
    max-height: 50px;
}


.footer_contenedor_imagen img{
    padding-top: 0px;
    width: 100%;
    height: 100%;
    max-height: 50px;
    padding-top: 20px;
}

.footer_contenedor_texto{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer_contenedor_texto p:nth-child(1){
    font-size: 12px;
}

.footer_contenedor_texto_politicas{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_contenedor_texto_politicas h1{
    font-size: 17px;
}

.footer_contenedor_texto_politicas p{
    font-size: 12px;
}

.footer_contenedor_texto_contactos{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_contenedor_texto_contactos h1{
    font-size: 17px;
}

.footer_contenedor_texto_contactos p{
    font-size: 12px;
}

.footer_contenedor_texto_contactos_redes{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.footer_contenedor_texto_contactos_redes img{
    cursor: pointer;
    width: 22px;
}

.facebook:hover{
    filter: drop-shadow(0px 0px 5px rgb(53, 53, 245));
}

.email:hover{
    filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}

.whatsapp:hover{
    filter: drop-shadow(0px 0px 5px rgb(62, 255, 101));
}

.insta:hover{
    filter: drop-shadow(0px 0px 5px rgb(245, 64, 224));
}

@media (min-width:700px){

/* Barra de navegacion */
/* .header_nav{
    flex-direction: row;
    justify-content: space-between;
}

.header_nav_imagen{
    position: initial;
    padding-top: 5px;
    width: 30%;
    text-align: left;
    padding-left: 20px;
}

.header_nav_imagen .imagen{
    width: 100%;
    height: auto;
    max-width: 180px;
    max-height: 40px;
    cursor: pointer;
}

.header_nav_imagen_fixed{
    text-align: center;
    position: fixed;
    padding-top: 5px;
    width: 100vw;
    background-color: #161616;
    z-index: 2;
    border-radius: 0 0 50px 50px;
}

.header_nav_imagen_fixed .imagen{
    width: 60%;
    height: 75%;
    max-width: 180px;
    max-height: 40px;
    cursor: pointer;
}

.header_nav_container{
    flex-direction: row;
    padding: 0;
    padding-right: 20px;
}

.header_nav_container a{
    font-size: clamp(10px, 3vw, 16px);
} */

.header{
    background-color: #000000;
}

.header_nav{
    --traslado-menu: translate(0);
}

.nav__list{
    position: static;
    grid-auto-flow: column;
    justify-content: unset;
    align-items: unset;
    padding: 0;
    transition: unset;
    background-color: initial;
}

.nav_togle{
    display: none;
}

.nav__item a{
    font-size: clamp(14px, 3vw, 16px);
}

.nav__item span{
    font-size: clamp(18px, 6vw, 22px);
}

/* seccion contactanos */
.seccion_contactanos_contenedor{
    flex-direction: row;
    background-color: #1a1a1ac7;
    padding: 40px 12px;
    width: 90%;
    align-self: center;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.seccion_contactanos_contenedor .contenedor_texto{
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    z-index: 1;
}

.contenedor_texto h1{
    font-size: var(--tamaño-titulos);
}

.contenedor_texto p{
    font-size: var(--tamaño-parrafos);
}

.campo{
    font-size: clamp(10px, 3vw, 20px);
    height: 5.5vh;
    max-width: 400px;
}

.submit{
    font-size: clamp(10px, 3vw, 16px);
}

/* pie de pagina */
.footer_contenedor{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}


.footer_contenedor_texto{
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.contenedor_parrafo_footer{
    width: 40%;
    max-width: 350px;
}

.footer_contenedor_texto_politicas h1{
    font-size: 17px;
}


.footer_contenedor_texto_contactos{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_contenedor_texto_contactos h1{
    font-size: 17px;
}

.footer_contenedor_texto_contactos p{
    font-size: 12px;
}

.footer_contenedor_texto_contactos_redes{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.footer_contenedor_texto_contactos_redes img{
    cursor: pointer;
    width: 22px;
}
}