
:root { 
    --primary-gradient: linear-gradient(to right, #7122D9, #E35BD0); 
}

.text-gradient-beautiful { 
    background: var(--primary-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}


.executive-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white; 
    border: 1px solid #f1f5f9;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    height: 100%;
}

.executive-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.08); 
    border-color: transparent; 
}


.btn-return {
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6); 
    transition: all 0.3s ease; 
    z-index: 50;
}

.btn-return:hover { 
    background: #1e1e2f; 
    color: white; 
    transform: translateX(-5px); 
}


.actions-container { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    margin-bottom: 15px; 
}

.download-row { 
    display: flex; 
    gap: 8px; 
}

.btn-action {
    flex: 1; 
    padding: 10px; 
    border-radius: 14px; 
    font-size: 9px; 
    font-weight: 800;
    text-transform: uppercase; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 6px; 
    transition: all 0.3s ease; 
    border: 1px solid transparent;
}

.btn-csv { background: #f0fdf4; color: #166534; border-color: #dcfce7; }
.btn-csv:hover { background: #166534; color: white; }
.btn-txt { background: #f8fafc; color: #475569; border-color: #e2e8f0; }
.btn-txt:hover { background: #475569; color: white; }
.btn-preview { background: #fdf2f8; color: #be185d; border-color: #fce7f3; width: 100%; }
.btn-preview:hover { background: #be185d; color: white; }

/* Banner principal e imagen */
.single-banner-container {
    max-width: 900px; 
    margin: 0 auto 50px auto; 
    position: relative; 
    height: 400px;
    border-radius: 4rem; 
    overflow: hidden; 
    background: #f8fafc;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); 
    cursor: pointer;
}

.banner-image {
    width: 100%; 
    height: 100%; 
    background-image: url('../img/fondo/1.PNG'); /* Ajusté la ruta para salir de la carpeta css */
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-banner-container:hover .banner-image { 
    transform: scale(1.02); 
}

.btn-view-full {
    position: absolute; 
    bottom: 25px; 
    left: 50%; 
    transform: translateX(-50%);
    background: #1e1e2f; 
    color: white; 
    padding: 14px 28px; 
    border-radius: 2rem;
    font-size: 10px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    display: flex; 
    align-items: center; 
    gap: 10px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease; 
    z-index: 10;
}


#imageModal {
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95); 
    backdrop-filter: blur(15px);
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
    opacity: 0; 
    transition: opacity 0.3s ease;
}

#imageModal.active { 
    display: flex; 
    opacity: 1; 
}

#imageModal img {
    max-width: 90%; 
    max-height: 85vh; 
    border-radius: 1.5rem;
    box-shadow: 0 0 60px rgba(0,0,0,0.6); 
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#imageModal.active img { 
    transform: scale(1); 
}

.close-modal { 
    position: absolute; 
    top: 30px; 
    right: 30px; 
    color: white; 
    font-size: 2.5rem; 
    cursor: pointer; 
}


.animate-float { 
    animation: float 6s ease-in-out infinite; 
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-20px); } 
}