:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero {
    background: url('../img/ALIANZAS.png') no-repeat center center/cover;
}
.body {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    /* background-color: #f5f5f5; */
    padding: 20px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
}
.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.02);
}
.card img {
    width: 100%;
    height: 283px;
}
.card-content {
    padding: 20px;
}
.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brown);
}
.card-content p {
    font-size: 1rem;
    color: var(--brownLight);
    margin-bottom: 15px;
}
.btn-descargar {
    display: inline-block;
    padding: 10px 20px;
    background: var(--yellow);
    color: var(--brown);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}
.btn-descargar:hover {
    background: var(--yellowHover);
}


/* Estilos para pantallas más grandes */
@media (min-width: 660px) {
    .card {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 700px;
    }
    .card img {
        width: 40%;
        height: 70%;
    }
    .card-content {
        width: 60%;
        padding: 30px;
    }
}
@media (min-width: 1024px) {
    .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .card {
        width: 100%;
        max-width: 1000px;
    }

    .card img {
        width: 40%;
        height: auto;
    }
}