
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    
}
/*Variables de Color*/
:root {
    --color-Primario: #ff5555;
    --color-Primario-Titulo: #ff5555;
    --color-Primario-hover: #f78b8b;
    --color-Fondo: #0d0d0d;
    --color-Fondo-hover: #1e1e1e;
    --color-Contraste: #005500;
    
  }
body{
background-color: var(--color-Fondo);
}
html{
    scroll-behavior: smooth;
    user-select: none;
}
/*Scroll*/
html::-webkit-scrollbar {
    width: 5px;
    z-index: 1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--color-Primario);
    transition: 2s;
}
html::-webkit-scrollbar-thumb:hover {
    background-color: #ffff;
    transition: 2s;
}

.btn_float{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;  
    text-align: center;
    width: 60px;
    height: 60px;
    background: var(--color-Primario);
    border-radius: 50%;
    font-size: 404px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 20px;
    bottom: -60px;
    z-index: 1;
    transition: 1s;
    animation: BTN_enter linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 200px ;
}
.btn_float:hover{
    background: var(--color-Fondo-hover);
    border: 1.5px solid var(--color-Primario);
    color: var(--color-Primario);
    scale: 1.04;
}
/*Animacion de button_float*/
@keyframes BTN_enter {
    100%{
        bottom: 20px;
    }
}


#fondo{
    height: 100vh;
    width: 100%;
    background-color: var(--color-Fondo);
    background-image: url(Images/Fondo.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: Fondo_Entrada 2s both;
    animation-delay: 1s;
}
@keyframes Fondo_Entrada {
    0%{
        opacity: 0;
    }
    100%{
            opacity: 1;
    }

}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #ffff;
    font-size: 1rem;
}
a:hover{
    color: var(--color-Primario);
}
/*header*/

header{
    position: relative;
    padding: 0 2rem;
    animation: Entrada_De_header 2s both;
    transform: translateY(-100px);
    animation-delay: 1s;
}
/*Animacion del header*/
@keyframes Entrada_De_header{
    0%{
        transform: translateY(-100px);
    }
    100%{
        transform: translateY(0px);
    }
}
.Nav_bar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.Nav_bar .logo{
    font-size: 1.5rem;
    font-weight: bold;
}
.Nav_bar .links{
    display: flex;
    gap: 2rem;
}
.Nav_bar .btn_menu{
    color: #ffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.btn_action{
    background-color: var(--color-Primario);
    color: #ffff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}
.btn_action:hover{
    scale: 1.08;
    color: #ffff;
    transition: 1s;
}

.ColorA:hover{
    color: #ffff;
}


/*Home*/
.home{
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffff;
}
.home h1{
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: Animacion_De_Entrada 3s both;
    animation-delay: 1s;
    opacity: 0;    
    color: var(--color-Primario-Titulo);
}
.home h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: Animacion_De_Entrada 3s both;
    animation-delay: 1.5s;
    opacity: 0;    
}
.home p{
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: Animacion_De_Entrada 3s both;
    animation-delay: 2s;
    opacity: 0;    
}

/*Animacion de entrada*/
@keyframes Animacion_De_Entrada{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
/*drop_menu*/
.drop_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background:rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
.drop_menu.open{
    height: max-content;
}
.drop_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drop_menu .btn_action{
    width: 100%;
    display: flex;
    justify-content: center;
}
/*Servicios*/
#services{
    height: max-content;
    width: 100%;
    background:rgb(14, 14, 14);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap; 
 }
 .Services_title{
    width: 100%;
    margin-top: 40px;
    text-align:  center;
    margin-bottom: 40px;
    color: var(--color-Primario-Titulo);
    flex-direction: column;
    font-size: 3rem;
 }
.Card{
    width: 320px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ffffff;
    position: relative;
    box-sizing: border-box;
    margin: 10px;
}
.Card:hover .Card_body{
    right: 0;
}
.Card_Img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.Card_body{
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background: #00000038;
    backdrop-filter: blur(4px);
    border-radius: 15px;
    color: #ffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
}
.Card_title{
    font-size: 1rem;
    font-weight: 500;
}
.card_Subtitle{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 300;
}
.card_info{
    font-size: 1rem;
    line-height: 25px;
    margin: 40px 0;
    font-weight: 400;
}
.Card_btn{
    color: #ffff;
    background: var(--color-Primario);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #ffff;
    transition: 1s;
}
.Card_btn:hover{
    background: #fffbff;
    color: var(--color-Primario);
    border: 2px solid var(--color-Primario);
    border-radius: 20px;
}
/*Facturacion*/
#facturacion{
    height: max-content;
    width: 100%;
    background:rgb(0, 0, 0);
    color: #ffff;

}
.cards_Container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.Facturacion_title{
    width: 100%;
    margin-top: 40px;
    text-align:  center;
    margin-bottom: 10px;
    color: var(--color-Primario);
    flex-direction: column;
    font-size: 3rem;
 }
 .Facturacion_subtitle{
    width: 100%;
    margin-top: 20px;
    text-align:  center;
    margin-bottom: 5px;
    color: #fffbff;
    flex-direction: column;
    font-size: 1rem;
 }
 .ticket_buss{
    width: 250px;
    height: max-content;
    border-radius: 40px;
    overflow: hidden;
    background: #ffff;
    position: relative;
    margin: 40px;
    border: 2px solid var(--color-Primario);
    transition: 1s;
 }

 .ticket_top{
    background: var(--color-Primario);
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 .ticket_buttom{
    width: 100%;
    height: 70px;
    background: var(--color-Primario);
    margin-top:  10px;
 }
 .ticket_buttom p{
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align:  center;
    margin-bottom: 5px;
    color: #fffbff;
    flex-direction: column;
    font-size: 0.9rem;
    
 }
 .ticket_buss:hover{
    border: 2px solid #ffffff;
    scale: 1.05;
 }
 .ticket_title{
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    
 }
 .ticket_img{
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: 15px;
 }
 .container_priBTN{
    width: 100%;
    justify-content: center;
    display: flex;
 }
 .container_priBTN p{
    font-size: 2rem;
    display: flex;
 }
 #privacidad_btn{
    display: flex;
    padding: 10px;
    width: max-content;
    height: auto;
    background: var(--color-Primario);;
    border-radius: 20px;
    color: #ffff;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-top: 90px;
    padding-bottom: 10px;
    transition: 1s;
 }
 #privacidad_btn:hover{
    scale: 1.03;
    background-color: var(--color-Fondo-hover);
    color: var(--color-Primario);
    border: #ff5555 solid 1px;
 }
/*Instrucciones*/
.Div_instrucciones{
    position: relative;
    width: 100%;
    display: flex;
    isolation: isolate;
    justify-content: center;
    align-items: center;
}
.A_direcciones{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 10px;
}
.A_direcciones::after{
    content: '';
    background-image: linear-gradient(45deg,var(--color-Primario),#f78080);
    position: absolute;
    z-index:-1;
    inset: 0;
    transform: skewY(-3deg);
    height: auto;
    border-radius: 10px;

}
.A_direcciones h1{
    display: flex;
    padding-bottom: 10px;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 30px;
    font-size: 1.2rem;
}

.A_direcciones h2{
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 1.1rem;
}

.A_direcciones li{
    padding-bottom: 5px;
    font-size: 1rem;
}
.Div_instrucciones2{
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
}
.Items_num{
    padding: 10px;
    padding-bottom: 30px;
}

.WhatsApp_BTN{
    background-color: #25d366;
    padding: 10px;
    margin-right: 500px;
    border-radius: 30px;
    font-size: 1rem;
}
.WhatsApp_BTN i{
    padding-right: 10px;
}
/*Unidades*/

#unidades h1{
    color: var(--color-Primario);
    text-align: center;
    margin-top: 30px;
    font-size: 3rem;

}
.Container_Unidades{
    width: 100%;
    height: auto;
    background-color: var(--color-Fondo);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.card_unidad{
    width: 60%;
    height: max-content;
    border-radius: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: var(--color-Primario-hover);
    display: flex;
    border: 1px solid #fffbff;
    transition: 1s;
}


#unidades .Conten_inf h1{
    width: 100%;
    color: var(--color-Primario);
    font-size: 2rem;
    margin-bottom: 10px;
}
.Conten_inf{
    display: flex;
    width: 60%;
    flex-direction: column;
    align-items: center;
    border-top-right-radius : 30px;
    border-bottom-right-radius : 30px;
    background-color: #fff;
}
#unidades p{
    width: 100%;
    color: var(--color-Fondo);
    font-size: .8rem;
    padding: 10px;
    
}
.div_imagen_uni{
    width: 40%;
}
.div_imagen_uni img{
    width:100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius : 30px;
    border-bottom-left-radius : 30px;
  }
  .Conten_inf .list_uni .lista_uni{
    list-style: disc;
    font-size: 0.9rem;
    color: black;
  }
  .Conten_inf .list_uni{
    padding-bottom: 10px;
  }
  .Conten_inf .list_uni .lista_uni .Aviso_WIFI{
    color: var(--color-Primario);
  }
  .Conten_inf .table_pb{
    width: 80%;
    border-collapse: collapse;
    font-size: .9rem;
    padding-bottom: 100px;
  }
  .Conten_inf .table_pb th{
    color: var(--color-Primario);
  }
  .Conten_inf .list_uni .lista_uni .Aviso_WIFI:hover{
    color: var(--color-Primario-hover);
    cursor:alias;
  }
  /* Especiales */

  .EspecialContaine{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 10px;
}
.EspecialContaine::after{
    content: '';
    background-image: linear-gradient(45deg,var(--color-Primario),#f78080);
    position: absolute;
    z-index:-1;
    inset: 0;
    transform: skewY(-3deg);
    height: auto;
    border-radius: 10px;
}
#Especial{
    padding-top: 50px;
    position: relative;
    width: 100%;
    display: flex;
    isolation: isolate;
    justify-content: center;
    align-items: center;
}
.EspecialContaine h1{
    color: #ffff;
    width: 100%;
    text-align: center;
    padding-top: 30px;
    font-size: 3rem;
}
.EspecialContaine p{
    color: #ffff;
    width: 100%;
    padding-right: 10px;
    text-align: justify;
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: .8rem;
}
.EspecialContaine img{
    width: 100px;
    height: 100px;
}
.table_Espe{
    border: 1;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    
}
.table_Espe td{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    width: 100px;
    color: #ffff;
    font-size: .8rem;
    transition: 2s;
}
.table_Espe th{
    font-size: .8rem;
    color: #ffff;
}


.table_Espe .Icon_Contac{
    font-size: 3.5rem;
    transition: 2s;
}
.table_Espe .Icon_Contac:hover{
    color: #fff;
    scale: 1.3;
}
/*Sugerencias*/
#sugerencia{
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.sugerencias_conta{
    margin-top: 50px;
    width: 70%;
    background-color: var(--color-Primario);
    height: auto;
    border-radius: 20px;
}
.sugerencias_conta h1{
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    margin-top: 10px;
}
.Conten_Action{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    
}
.Conten_Action input{
    width: 90%;
    height: 40px;
    border-radius: 10px;
    margin-left: 20px;
    padding: 10px;
    border: solid 2px #ffff;
    font-size: 1.1rem;
    outline: none;
}
.sugerencias_conta button{
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 20px;
    width: max-content;
    padding: 10px;
    font-size: 1rem;
    background-color: var(--color-Primario-hover);
    color: #fff;
    outline: none;
    border: solid 2px #ffff;
}
.sugerencias_conta p{
    color: #fff;
    padding-top: 20px;
    padding-left: 25px;
    font-size: 1.3rem;
}
.sugerencias_conta textarea{
    width: 90%;
    height: 100px;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: justify;
    margin-left: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 20px;
    padding: 10px;
    outline: none;
}

  /*Resposive*/
@media(max-width: 992px){
    .Nav_bar .links,
    .Nav_bar .btn_action{
        display: none;
    }
    .Nav_bar .btn_menu{
        display: block  ;
    }
    .drop_menu{
        display: block;
    }
    .Card{
        width: calc(50% - 20px);
    }
    
    .Card_title{
        font-size: 25px;
        font-weight: 500;
    }
    .card_Subtitle{
        text-transform: capitalize;
        font-size: 10px;
        font-weight: 300;
    }
    .card_info{
        font-size: 15px;
        line-height: 25px;
        margin: 40px 0;
        font-weight: 400;
     }
     .Card_body{
        right: 0;
     }
     .Card_btn{
        width: 250px;
        
     }
     
     .card_unidad{
        position: relative;
        width: 100%;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        border: solid black 1px;
        transition: none;
        
    }
    .card_unidad:hover{
        scale: 1;
    }
    .div_imagen_uni{
        border-radius: 0px;
    }
    .div_imagen_uni img{
        border-radius: 0px;
    }
    .Conten_inf{
      border-radius: 0px;
    }
    
    
    }
    @media (max-width: 460px) {
        .drop_menu{
            left: 2rem;
            width: unset;
            
        }
        .Card{
            width: 100%;
            height: 350px;
        }
        .Card_title{
            font-size: 25px;
            font-weight: 500;
        }
        .card_Subtitle{
            text-transform: capitalize;
            font-size: 10px;
            font-weight: 300;
        }
        .card_info{
            font-size: 10px;
            line-height: 15px;
            margin: 40px 0;
            font-weight: 400;
         }
         .Card_btn{
            width: 150px;
         }
         .Services_title{
            font-size: 2rem;
         }
         .Div_instrucciones{
            padding: 10%;
         }
         .Div_instrucciones2{
            display: block; 
        }

        .card_unidad{
            position: relative;
            width: 100%;
            border-radius: 0px;
            margin-bottom: 0px;
            margin-top: 0px;
            border: solid white 1px;
        }
        .card_unidad:hover{
            scale: 1;
        }
        .div_imagen_uni{
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: fill;
            border-radius: 0px;
        }
        .div_imagen_uni img{
            border-radius: 0px;
        }
        .Conten_inf{
            position: relative;
            background-color: #1e1e1ea4;
            width: 100%;
            border-radius: 0px;
        }
        #unidades p{
            color: #fff;
            font-size: .7rem;
        }
        #unidades .Conten_inf h1{
            font-size: 1.1rem;
        }
        .Conten_inf .list_uni .lista_uni{
            color: white;
            font-size: .8rem;
          }
          .Conten_inf .table_pb{
            color: white;
            border-color: white;
          }
          .sugerencias_conta button{
            width: 90%;
          }
          .sugerencias_conta h1{
            font-size: 2rem;
          }
          .sugerencias_conta{
            width: 100%;
          }
        }
    
