body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #111112;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* Logo */
.logo {
    max-width: 180px; /* tamaño máximo */
    height: auto;
}

/* Hero section */
.hero {
    background: url("img/hero.jpg") no-repeat center center/cover;
    color: rgb(14, 14, 15);
    text-align: center;
    padding: 80px 20px;
}

/* Ajuste del tamaño en caso de que hero tenga imagen */
.hero img {
    max-width: 100%;
    height: auto;
}

/* Banderas */
.flag {
    width: 24px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

.cards {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

footer {
    background: #111112;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .logo {
        max-width: 140px;
    }

    .hero {
        padding: 50px 15px;
    }
}
