/* SECCIÓN MEGA INFO */
.megainfo {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.section-title-info {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-main-display {
    position: relative; 
    max-width: 1000px;
    margin: 0 auto 40px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 600px; /* Altura fija para la previsualización */
}

/* Capa para permitir el clic sobre el PDF */
.pdf-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: transparent;
}

.img-full {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.info-overlay-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(191, 33, 118, 0.6); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0; 
    transition: opacity 0.3s ease;
    z-index: 20; 
}

.info-main-display:hover .info-overlay-hint {
    opacity: 1; 
}

.info-overlay-hint i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* BOTÓN "VER TODAS" */
.btn-info-all {
    background-color: #BF2176;
    color: white !important;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.btn-info-all:hover {
    background-color: #723D8C;
    transform: scale(1.05);
}

/* MODAL - FONDO */
.modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

/* CONTENEDOR INTERNO */
.modal-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 40px 20px; 
    height: 100vh;
}

/* PDF EXPANDIDO */
.modal-content-pdf {
    width: 90vw;
    height: 80vh;
    border-radius: 8px;
    background-color: #eee;
    margin-bottom: 20px;
}

/* BOTÓN DE DESCARGA */
.modal-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-download {
    background-color: #BF2176;
    color: white !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #723D8C;
}

/* BOTÓN CERRAR */
.modal-close {
    position: absolute; 
    top: 10px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}