.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.logopanels {
    grid-column: span 2; /* Ocupa todo el ancho */
    text-align: center;
    margin-bottom: -10px;
    margin-top: -20px;
}

.imgpanels img {
    width: 120px;
    margin-left: 10px;
    height: auto;
}

.card {
    padding: 20px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-weight: bold;
}

.dark {
    background-color: #0f283d;
    color: #ffffff;
    margin-bottom: -60px;
}

.dark1 {
    background-color: #0f283d;
    color: #ffffff;
    margin-top: -50px;
}

.gold {
    background-color: #e0ac53;
    color: white;
    margin-bottom: -60px;

}

.light {
    background-color: #d9d9d9;
    color: #333333;
    margin-top: 60px;
    padding-top: 60px;
    margin-bottom: 50px;
}

.gray {
    background-color: #333333;
    color: #ffffff;
    margin-top: -50px;
    padding-top: 80px;
}

.black {
    background-image: url('img/estrategiasimg.png');  /* Ruta de la imagen */
    filter: grayscale(100%);
    color: white;
    background-size: cover;  /* Asegura que la imagen cubra toda la pantalla */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

.black p {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro translúcido */
    padding: 5px;
    display: inline-block;
    border-radius: 15px;
}


.image-card img {
    width: 100%;
    border-radius: 10px;
}

.arrow {
    font-size: 24px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.plus {
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr; /* Se apilan las tarjetas */
    }
}

/* Estilos del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor del contenido del modal */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    font-family: 'Belleza';
}

/* Botón de cerrar */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
