:root {
    --color-primario: #721B36;
    --color-secundario: #9D2449;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(114, 27, 54, 0.1);
}

.btn-download {
    background-color: var(--color-secundario);
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-download:hover {
    background-color: var(--color-primario);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-container {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
    padding: 20px;
}

.image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .image-container img {
    transform: scale(1.05);
}
