
: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(22px, 5vw, 52px);
    --Tamaño-parrafos: clamp(14px, 3vw, 23px);

    /* Variables usadas mas de 700px */
    --tamaño-titulos: clamp(14px, 5vw, 60px);
    --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;
}

hr{
    opacity: 1;
}

/* Barra de navegacion */
/* .header{
    background-color: #000000;
}

.header_nav{
    background-color: #161616;
    border-radius: 0 0 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

.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;
    display: flex;
    margin: 0 auto;
    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;
}

/* main */
.principal{
    background-color: black;
    overflow: hidden;
}

.principal_container{
    display: flex;
    flex-direction: column;
}

.principal_container_imagen{
    width: 100%;
    height: 80%;
    text-align: center;
}

.principal_container_imagen .imagen{
    width: 100%;
    max-width: 494px;
    height: auto;
    object-fit: cover;
}

.principal_container_texto{
    display: flex;
    flex-direction: column;
    color: white;
    gap: 10px;  
    text-align: center;  
    padding: 0 7px;
}

.principal_container_texto h1{
    font-size: var(--Tamaño-Titulos);
}

.principal_container_texto span{
    background: var(--Color-Grdiente-Rojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.principal_container_texto p{
    font-size: var(--Tamaño-parrafos);
}

/* .principal_container_links{
    display: flex;
    justify-content: center;
    gap:5vw;
    margin-top: 20px;
    padding: 0 5px;
}

.principal_container_links a{
    text-decoration: none;
    color: white;
    padding: 7px 10px;
    font-size: clamp(8px, 2vw, 22px);
    border-radius: 5px;
}

.principal_container_links a:nth-child(1){
    background:  var(--Color-Grdiente-Rojo);
}

.principal_container_links a:nth-child(2){
    background-color: #3F3C3C;
}

.principal_container_links a:hover{
    color: rgb(255, 255, 255);
    background: rgba(79, 78, 78, 0.76);
} */


.principal_container_iconos{
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 5px 10px 5px;
}

.principal_container_iconos img{
    width: 15vw;
    min-width: 55px;
    height: auto;
    max-width: 100px;
}


.principal_container_iconos img:nth-child(3){
    min-width: 67px;
    width: 18.5vw;
    max-width: 120px;
}


/* seccion servicios */
.seccion_servicios{
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.seccion_servicios .imagen_barras_superior{
    position: absolute;
    width: 70px;
    height: 100px;
    padding-left: 10px;
}

.seccion_servivios_texto{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 7px;
    padding-top: 35px;
    z-index: 1;
    gap: 10px;
}

.seccion_servivios_texto h1{
    font-size: clamp(18px, 5vw, 52px);
}

.seccion_servivios_texto span{
    background: var(--Color-Grdiente-Rojo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seccion_servivios_texto p{
    font-size: var(--Tamaño-parrafos);
}

.seccion_servicios_slaiders{
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    align-self: center;
    padding: 0 7px;
}

.seccion_servicios_slaider{
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    width: 70vw;
    max-width: 251px;
    max-height: 321px;
    border-radius: 40px;
    box-shadow: 0px 0px 7px white;
    margin: 7px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 8px;
    overflow: hidden;
    transition: opacity 1s;
}


.seccion_servicios_slaider--show{
    pointer-events: unset;
    opacity: 1;
}

.activoSlaider{
    animation: ingresar 2s;
}

@keyframes ingresar{
    0%{
        opacity: 0;
        transform: translateY(200px);
    }

    100%{
        opacity: 1;
        transform: translateY(0);;
    }
}


.poligono{
    width: 7vw;
    max-width: 45px;
    cursor: pointer;
}


.seccion_servicios_slaider_imagen{
    width: 100%;
    height: 50%;
    border-radius: 40px;
}

.seccion_servicios_slaider .imagen{
    width: 100%;
    height: 100%;
    border-radius: 40px 40px 0 0 ;
}

.seccion_servicios_slaider_texto{
    display: flex;
    flex-direction: column;
    padding: 0 7px;
    height: 100%;
}

.seccion_servicios_slaider_texto{
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.seccion_servicios_slaider_texto h1{
    font-size: clamp(14px, 5vw, 18px);
}

.seccion_servicios_slaider_texto p{
    padding-top: 15px;
    font-size: clamp(12px, 3vw, 14px);
}

.seccion_servicios_slaider_texto_items{
    display: flex;
    gap: 15px;
    padding-left: 7%;
    padding-bottom: 10px;
}

.seccion_servicios_slaider_texto_items p{
    font-size: clamp(7px, 4vw, 14px);
}

.meEncanta{
    display: flex;
    gap: 2px;
}

.meEncanta img{
    width: 8vw;
    max-width: 14px;
}

.comentarios{
    display: flex;
    gap: 2px;
}

.comentarios img{
    width: 8vw;
    max-width: 14px;
}

.compartir{
    display: flex;
    gap: 2px;
}

.compartir img{
    width: 8vw;
    max-width: 14px;
}

.imagen_barras_fondo{
    display: flex;
    align-self: center;
    padding-bottom: 30px;
    gap: 15px;
    position: relative;
    top: -30px;
    max-width: 325px;
}

.imagen_barras_fondo img:nth-child(1){
    width: 20vw;
}

.imagen_barras_fondo img:nth-child(2){
    width: 24vw;
}

/* 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);
}


/* main */
.principal_container{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.principal_container_imagen{
    order: 1;
}

.principal_container_imagen .imagen{
    width: 40vw;
    max-width: 474px;
    height: auto;
}

.principal_container_texto{
    padding-left: 40px;
    gap: 40px;
}

.principal_container_texto h1{
    font-size: var(--tamaño-titulos);
}

.principal_container_texto p{
    font-size: var(--tamaño-parrafos);
}

.principal_container_iconos{
    gap: 30px;    
}

/* .principal_container_links{
    display: flex;
    justify-content: center;
    gap:5vw;
    margin-top: 20px;
    padding: 0 5px;
}

.principal_container_links a{
    font-size: clamp(12px, 2vw, 18px);
    border-radius: 5px;
} */


/* seccion servicios */
.seccion_servivios_texto h1{
    font-size: clamp(14px, 5vw, 40px);
    padding: 0 80px;
}

.seccion_servivios_texto p{
    font-size: var(--tamaño-parrafos);
}

.seccion_servicios_slaiders{
    grid-template-columns: 50px max-content 50px;
    padding: 0 7px;
}

.seccion_servicios_slaider{
    width: 75vw;
    max-width: 850px;
    height: 40vh;
    max-height: initial;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.poligono{
    width: 7vw;
    max-width:30px;
    cursor: pointer;
}

.poligono2{
    justify-self: end;
}

.seccion_servicios_slaider_imagen{
    width: 100%;
    height: 100%;
    border-radius: 40px 0 0 40px;
    max-width: 360px;
}

.seccion_servicios_slaider .imagen{
    border-radius: 40px 0 0 40px;
}

.seccion_servicios_slaider_texto{
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-top: 20px;
    padding-right: 10px;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.seccion_servicios_slaider_texto h1{
    font-size: clamp(14px, 5vw, 28px);
}

.seccion_servicios_slaider_texto p{
    font-size: clamp(14px, 3vw, 18px);
}

/* 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: 400px;
}

.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;
}
}