* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: rgb(225, 253, 253);
}

/* Estilo de la barra de navegación */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 10px 20px;
    color: white;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px; /* Ajusta el tamaño del logo según sea necesario */
    height: auto;
    margin-right: 15px; /* Espacio entre el logo y el nombre de la marca */
}

.brand-name {
    font-weight: bold;
    font-size: 24px;
    color: rgb(250, 221, 3);
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Raleway', sans-serif;
}

.nav-btn:hover {
    background-color: white;
    color: #2c3e50;
}

/* Media Queries para la barra de navegación responsiva */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-right {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .nav-btn {
        width: 30%; /* Ajusta el ancho del botón para pantallas más pequeñas */
    }
}
.container1 { 
    min-height: 80vh;
    background-color: rgb(225, 253, 253);
    font-family: 'Raleway', sans-serif;
    width: 100%;
    padding-left: 20px;
    display: flex;
    align-items: center;

}
.titulo {
    padding-top: 80px;
    font-size: 45px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 40px;
    color: #1e1b1b;
    padding-left: 120px;
    
}


.lead{
    width: 80%;
    text-align: left;
    padding-bottom: 30px;
    font-size: 25px;
    padding-left: 50px;
    text-align: justify;
    
    
}

.botones
{
    padding-top: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    text-align: center;
}



.container {
     /* Asegura que el carousel ocupe todo el ancho del contenedor */
    background-color: #2c3e50;
    margin: 0 auto; /* Centra el carousel horizontalmente */
    width: 100%;
    justify-content: center;
    align-items: center;
  
}
h1.center-align.titulo {
    color :azure !important ;
    text-align: center;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Esto evitará que el contenido se desborde */
}

.carousel .carousel-item {
    user-select: none;
    width: 100%; /* Ocupa el 100% del contenedor */
    max-width: 700px; /* Ajusta el ancho máximo */
    height: 350px;
}

.carousel .carousel-item img {
    border-radius: 15px;
    max-width: 100%; /* Asegura que la imagen no supere el ancho del contenedor */
    max-height: 100%; /* Asegura que la imagen no supere la altura del contenedor */
    object-fit: cover; /* Ajusta la imagen para que se adapte al contenedor sin deformarse */
}

/* .carousel-item {
    display: flex;
   
    justify-content: center;
    align-items: center;
    
}
 .carousel .carousel-item  {
    user-select: none;
    width: 700px;
    height: 350px;
    padding-left: 20px;
   
 }
 .carousel .carousel-item img {
    border-radius: 15px;
 } */
.imagen {
    padding-top: 60px;
   
    float: right;
    width:800px ;
    height: 430px;
    padding-right: 40px;
    
}
@media(max-width:600px){
   
 
   .container1 {
    display: block;
    min-height:650px;
    ;
   }
    .titulo {
        font-size: 25px;
    }
    .container {
        width: 80%;
       }
       h1.center-align.titulo {
        color :azure !important ;
        padding-left: 10px;
    }
    .carousel .carousel-item {
        user-select: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 350px;
        height: 175px;
        padding-left: 20px;
        
   }
 
 
    .lead {
        font-size: small;
    }
    .botones {
        padding-bottom: 10px;
        padding-left: 70px;
        text-align: left;
        align-content: space-around;
    }
    .imagen     {
        padding-top: 10px;
        max-width: 100%;
        height: auto;
        padding-left: 30px;
 }
}
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    font-family: 'Raleway', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 40px; /* Ajusta el tamaño del logo del footer según sea necesario */
    height: auto;
    margin-right: 15px;
}

.footer-left p {
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #3498db; /* Cambia el color al pasar el cursor */
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.social-icon {
    color: white;
    font-size: 20px;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #3498db; /* Cambia el color al pasar el cursor */
}

/* Media Queries para el footer responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left, .footer-right {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (min-width: 600px) and (max-width:991px){
    body {
        padding:20px;
    }
 
   .container1 {
    display: flex; /* Cambia el contenedor a un contenedor flex */
    flex-direction: column; /* Mantiene los elementos en una columna */
    align-items: center; 
   }
   .titulo {
    font-size: 35px;
   }
    
    .lead {
        font-size: medium;
    }
    .botones {
        padding-bottom: 10px;
        display: flex; /* Hacemos que el contenedor de botones sea flex */
        justify-content: center; /* Centra horizontalmente los botones dentro del contenedor */
        gap: 10px; /* Espacio entre los botones */
        padding-bottom: 10px;
        width: 100%;
    }
    .imagen     {
        padding-top: 10px;
        width: 550px;
        height: 300px;
        
        
       
       
    
        
       
    }
}


@media (min-width: 992px) and (max-width:1500px){
        body {
            padding:20px;
        }
        .titulo {
            font-size: 35px;
            text-align: center;
            padding-right: 20%;
        }
        .contenedor1 {
            display: flex; /* Convertimos el contenedor en un contenedor flex */
            align-items: center; /* Centra verticalmente el contenido */
            justify-content: space-between;
            min height: 100vh;
        }
        .principal {
            max-width: 70%; /* Ajusta el ancho del contenido principal para dar espacio a la imagen */
        }
        .lead {
            font-size: 20px;
          
        }
        .botones {
            padding-bottom: 10px;
        }
        .imagen     {
     
            width: 370px;
            height: 300px;
            margin-right: 0;
           
            
           
        }
    }

 

    @media (max-width: 991px) {
        .carousel-item img {
            width: 80%; /* Reducir el tamaño en pantallas medianas */
        }
    }
    
    /* Ajustes responsivos para pantallas pequeñas */
    @media (max-width: 600px) {
        .carousel-item img {
            width: 100%; /* Las imágenes ocupan el 100% del ancho del contenedor */
            height: auto;
        }
    }