.brochure-container {
       /* Ancho est¨¢ndar para la tarjeta */
    margin: 30px auto;     /* Centrado horizontal y separaci¨®n arriba/abajo */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.brochure-container:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brochure-preview {
    width: 100%;          /* Que ocupe todo el ancho de la tarjeta */
    max-width: 300px;     /* Limitar ancho m¨¢ximo */
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.brochure-preview:hover {
    transform: scale(1.05);
}

.btn-descargar {
    margin-top: 25px;
    background-color: #FA4616;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(250, 70, 22, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    width: 100%;
   
    user-select: none;
}

.btn-descargar:hover {
    background-color: #e0440f;
    box-shadow: 0 8px 18px rgba(224, 68, 15, 0.6);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

/* Logo en modal */
.logo-idico {
    width: 120px;
    margin-bottom: 20px;
    filter: none;
}

/* Cerrar modal */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

/* T¨ªtulo modal */
.modal-content h3 {
    font-family: 'Raleway', sans-serif;
    color: #FA4616;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Formulario */
#formularioPDF input[type="text"],
#formularioPDF input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#formularioPDF input[type="text"]:focus,
#formularioPDF input[type="email"]:focus {
    border-color: #FA4616;
    outline: none;
}

/* Bot¨®n enviar */
.btn-submit {
    background-color: #003B49;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    padding: 12px;
    border: none;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    background-color: #001f28;
}