/* --- CONFIGURACIÓN GENERAL --- */
body {
    background-color: #141414;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* --- CONTENEDOR DE CURSOS --- */
.contenedor-cursos {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    padding: 40px 4%;
    justify-content: flex-start;
}

/* --- TARJETA ESTILO PÓSTER (MÁS GRANDE) --- */
.tarjeta-curso {
    width: 380px; /* Aumentamos el ancho significativamente */
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.tarjeta-curso:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: #e50914;
}

/* --- IMAGEN TAMAÑO GIGANTE (SIN CORTAR) --- */
.imagen-curso {
    width: 100%;
    height: 500px; /* ALTURA DUPLICADA para que la foto vertical luzca */
    object-fit: contain; /* Muestra la foto COMPLETA */
    background-color: #000; /* Fondo negro por si la foto es muy delgada */
    display: block;
}

/* --- INFORMACIÓN DEBAJO DE LA IMAGEN --- */
.info-curso {
    padding: 20px;
    background: linear-gradient(to bottom, #1f1f1f, #181818);
}

.info-curso h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem; /* Título más grande */
    color: #fff;
}

.duracion {
    color: #aaa;
    margin-bottom: 5px;
}

.precio {
    color: #46d369; 
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* --- BOTÓN ROJO --- */
.btn-detalles {
    background-color: #e50914;
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-detalles:hover {
    background-color: #ff111b;
}