: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 servicios adicionales */
.seccion_servicios_adicionales{
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 10px 10px 50px 10px;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.seccion_servicios_adicionales .imagen_barras_superior{
    position: absolute;
    width: 70px;
    height: 100px;
    padding-left: 10px;
}

.seccion_servicios_adicionales_texto{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 7px;
    padding-top: 35px;
    z-index: 1;
    gap: 10px;
}

.seccion_servicios_adicionales_texto h1{
    font-size: var(--Tamaño-Titulos);
}

.seccion_servicios_adicionales_texto span{
    background: var(--Color-Grdiente-Rojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seccion_servicios_adicionales_texto P{
    font-size: var(--Tamaño-parrafos);
}

.seccion_servicios_adicionales_cartas{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.seccion_servicios_adicionales_carta{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 42.5vh;
    max-width: 300px;
    min-height: 260px;
    max-height: 270px;
    box-shadow: 0px 0px 7px white;
    gap: 10px;
    padding: 13px;
    border-radius: 40px;
    overflow: hidden;
    opacity: 0;
}

.activoServiciosAdicionales:nth-child(1){
    opacity: 1;
    animation: ingresar 4s;
}

.activoServiciosAdicionales:nth-child(2){
    opacity: 1;
    animation: ingresar 6s;
}

.activoServiciosAdicionales:nth-child(3){
    opacity: 1;
    animation: ingresar 8s;
}

@keyframes ingresar{
    0%{
        opacity: 0;
        transform: translateY(200px);
    }

    100%{
        opacity: 1;
        transform: translateY(0);;
    }
}


.seccion_servicios_adicionales_carta h1{
    font-size: clamp(18px, 3vw, 24px);
    color: rgb(255, 255, 255);
}

.seccion_servicios_adicionales_carta p{
    height: 40%;
    font-size: clamp(9px, 3vw, 11px);
}

.seccion_servicios_adicionales_carta_item{
    display: flex;
    gap: 5px;
    margin: 8px 0;
    padding-top: 10px;
    cursor: pointer;
    height: 20%;
}

.seccion_servicios_adicionales_carta_item a{
    text-decoration: none;
    color: #B60000;
    font-size: clamp(14px, 3vw, 20px);
}

.seccion_servicios_adicionales_carta_item .flecha{
    width: 10vw;
    max-width: 30px;
}

.seccion_servicios_adicionales .imagen_barras_inferior{
    position: absolute;
    width: 70px;
    height: 100px;
    bottom: -100;
    right: 0;
}

/* 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 servicios adicionales */
.seccion_servicios_adicionales{
    height: 90vh;
}

/* 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;
}
}