body {
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    font-family: Arial, sans-serif;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #5d3a00;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tarjeta {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: transform 0.2s;
}

.tarjeta:hover {
    transform: scale(1.05);
}

.foto {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.btn {
    background-color: #009688;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}
