body {
padding: 0;
margin: 0;
background-color: black;
}

.fondo {
    background:linear-gradient(rgb(12, 14, 20), rgba(0, 0, 0, 0.8)),url(img/2023-07-29.jpg);
    background-position: center;
    background-size: cover;
  
}

main {
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}
   
@font-face {
    font-family: "ariel";
    src: url(fuentes/Montserrat-Bold.otf);
}

.logo {
  width: 100px;
  height: 100px;
  padding-top: 10px;
  
  
}

.padrelogo {
    border-bottom: 2px solid white;

}
    

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgb(69, 68, 68), rgb(0, 0, 0));
    
}

.redestelefono {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.redes {
    display: flex;  
    align-items: center;
    margin: 20px;
   
    
}

.container {
    background-color:#696969 ;
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
    
}


H3{
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    font-weight: 100;
    text-transform: capitalize;

}

H2 {
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    font-family: "ariel";
    font-weight: 500;
    margin: 0px;
    text-transform: capitalize;
}

.telefono {
    display: flex;
    flex-direction: column;

}

.contenedor {
    background-color: rgb(126, 118, 118);
    margin: 10px;
    width: 350px;
    height: 50px;
    border-radius: 10px;
    transition: ease-in-out 0.3s; 
}

.contenedor:hover{
    background-color: rgb(25, 207, 16);
    transform: scale(1.05);
}

a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
   color: white; 
   display: flex;
   justify-content: center;
   text-transform: capitalize;
   font-family: "ariel";
   font-size:27px;
   margin-bottom: 10px;
}

.resaltado{
    color: red;
    margin-left: 10px;
}

.texto{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    
}

ul {
    color: red;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    font-family: "ariel";
    text-transform: capitalize;
    
}

li {
    margin: 0;
}

.texto2 {
    font-size: 16px;
}

button {
    display: flex;
    justify-content: center;
    width: 120px;
    height: 40px;
    align-items: center;
    background-color:rgb(25, 207, 16);
    border: none;
    margin: 20px;
    border-radius: 10px;
    text-transform: uppercase;
     
}

.texto3 {
    font-family: "ariel";
    color: white;
    transition: ease-in-out 0.3s; 
}

.texto3:hover {
    transform: scale(1.05);
    background-color: aliceblue;
    color: black;
}

.contenedor1 {
    display: flex;
    justify-content: center;
}


.servicios li {
    opacity: 0;
    margin: 5px 0;
    font-size: 18px;
    animation: aparecer 1s forwards ;
}

/* Animación para mostrar los elementos */
@keyframes aparecer {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.servicios li:nth-child(1) {
    animation-delay: 0s;
    font-size: x-large;
   
    
}

.servicios li:nth-child(2) {
    animation-delay: 1s;
    
}                                                                                                               

.servicios li:nth-child(3) {
    animation-delay: 2s;
    
}

.servicios li:nth-child(4) {
    animation-delay: 3s;
}

.servicios li:nth-child(5) {
    animation-delay: 4s;
}

/* Ocultar los elementos al principio */
.servicios {
    visibility:hidden;
    animation: mostrar 0s forwards;
}

@keyframes mostrar {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        
    }

}

.inferior {
    background: linear-gradient(to bottom, rgb(69, 68, 68), rgb(0, 0, 0));
    height: 360px;
    display: flex;
    flex-direction: column;
    
}

p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    text-align: justify;
    color: white;
    font-family: arial;
}

.texto4 {
    padding-top: 10px;
    padding-bottom: 0px;
    color: rgb(214, 0, 0);
    
}

.logo2 {
    height: 100px;
    width: 100px;
    display: block;
    margin: 0 auto;

}


footer {
    background-color: black;
    display: flex;
    flex-direction: column;
}

.iconos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
}

.icono {
    margin: 10px;
}

.informacion{
    margin-top: 10px;
    font-family: "ariel";
    text-transform: uppercase;
    color: #03c2ff;
}

