@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F5;
    color: #222221;
}

h1, h2, h3, .titulos {
    font-family: 'Poppins', sans-serif;
    color: #003366;
    font-weight: 700;
}

.navbar {
    background-color: #222221;
    border-bottom: 4px solid #007BFF;
}

.nav-link {
    color: #FFFFFF;
}

.nav-link:hover {
    color: #007BFF;
}

.logo {
    margin-top: 10px;
}

.idiomas{
    padding: 5px;
    margin-top: 10px;
}

.español {
    width: 50px;
    height: 30px;
}

.ingles {
    width: 50px;
    height: 30px;
}

.jumbotron {
    padding: 40px;
    border-radius: 10px;
    border-left: 8px solid #003366;
    border-bottom: 8px solid #003366;
    margin-top: 20px;
    background-image: url('fotos/fondo-jumbotron.jpg');
    background-size: cover;
    background-position: center;
}

.card-daw {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
    border: none;
}

.card-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
}

.titulos {
    font-weight: bold;
    margin-top: 10px;
}

.button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background-color: #222221;
}

.card-daw:hover {
    background-color: #f0f8ff;
}

.button {
    border-radius: 5px;
}

.button:hover {
    background-color: #003366;
    color: white;
}
    
.button:active {
    background-color: #222221;
    color: white;
}

.card-img {
    padding: 20px;
}

.img-carousel {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption h5 {
    font-family: 'Poppins', sans-serif;
    color: #007BFF;
}

@media (max-width: 768px) {
    .img-carousel {
        height: 250px;
    }
}

footer {
    background-color: #222221;
    color: white;
    padding: 30px;
    margin-top: 40px;
}

footer h6 {
    color: #007BFF;
}