/* ============================================
   AQC - Ficha de Emprendimiento
   Estilos vibrantes y energéticos
   ============================================ */

:root {
    --aqua-primary: #0066FF;
    --aqua-secondary: #00C2FF;
    --aqua-accent: #FF3366;
    --aqua-success: #00D95F;
    --aqua-warning: #FFB300;
    --aqua-gradient: linear-gradient(135deg, var(--aqua-primary), var(--aqua-secondary));
    --aqua-gradient-hover: linear-gradient(135deg, #0055DD, #00B0E6);
}

.aqc-empr-single {
    padding: 50px 0 70px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.aqc-empr-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: var(--aqua-gradient);
    opacity: 0.03;
    z-index: 0;
}

/* ----- HERO SECTION VIBRANTE ----- */
.aqc-empr-hero {
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .aqc-empr-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.aqc-empr-hero-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
}

.aqc-empr-hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.25);
}

.aqc-empr-hero-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.aqc-empr-hero-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 194, 255, 0.1));
    pointer-events: none;
}

/* ----- TITULO CON EFECTO GRADIENTE ----- */
.aqc-empr-title {
    margin: 0 0 16px 0;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--aqua-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.aqc-empr-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--aqua-gradient);
    border-radius: 2px;
}

/* ----- BADGES COLORIDOS ----- */
.aqc-empr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 30px 0;
}

.aqc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 194, 255, 0.1));
    border: 2px solid rgba(0, 102, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--aqua-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.aqc-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.aqc-badge:hover {
    transform: translateY(-2px);
    border-color: var(--aqua-primary);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
    color: var(--aqua-primary);
}

.aqc-badge:hover::before {
    left: 100%;
}

/* ----- INFO GRID CON COLOR ----- */
.aqc-empr-info {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .aqc-empr-info {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.aqc-empr-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 40px rgba(0, 102, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.aqc-empr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--aqua-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aqc-empr-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 102, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 255, 0.15);
}

.aqc-empr-card:hover::before {
    opacity: 1;
}

.aqc-empr-card h2 {
    margin: 0 0 24px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--aqua-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.aqc-empr-card h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: var(--aqua-gradient);
    border-radius: 3px;
    display: inline-block;
}

.aqc-empr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 2px solid rgba(0, 102, 255, 0.05);
    transition: all 0.2s ease;
}

.aqc-empr-row:hover {
    background: rgba(0, 102, 255, 0.02);
    padding: 16px 12px;
    border-radius: 12px;
    border-bottom-color: transparent;
}

.aqc-empr-row:last-child {
    border-bottom: none;
}

.aqc-empr-label {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.aqc-empr-value {
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--aqua-primary), var(--aqua-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- BOTONES VIBRANTES ----- */
.aqc-empr-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0 24px 0;
}

.aqc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    background: var(--aqua-gradient);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.aqc-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.aqc-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.35);
    background: var(--aqua-gradient-hover);
}

.aqc-btn:hover::before {
    left: 100%;
}

.aqc-btn-wa {
    background: linear-gradient(135deg, #25D366, #00B341);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.aqc-btn-wa:hover {
    background: linear-gradient(135deg, #20C55E, #009C3A);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.aqc-btn-map {
    background: linear-gradient(135deg, #FF3366, #FF0066);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.aqc-btn-map:hover {
    background: linear-gradient(135deg, #E62E5C, #E6005C);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.4);
}

/* ----- SOCIAL LINKS CON COLOR ----- */
.aqc-socials {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 102, 255, 0.08);
}

.aqc-socials h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aqua-primary);
}

.aqc-socials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.aqc-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.9));
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.aqc-social-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border-color: var(--aqua-primary);
    color: var(--aqua-primary);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
}

/* ----- GALERÍA VIVIDA ----- */
.aqc-empr-gallery {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid rgba(0, 102, 255, 0.1);
    position: relative;
}

.aqc-empr-gallery::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--aqua-gradient);
    border-radius: 2px;
}

.aqc-empr-gallery h2 {
    margin: 0 0 32px 0;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--aqua-primary), var(--aqua-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqc-grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.aqc-media-tile {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
}

.aqc-media-tile:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.25);
}

.aqc-media-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.aqc-media-tile:hover img {
    transform: scale(1.1);
}

.aqc-video-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--aqua-primary);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 194, 255, 0.08));
    transition: all 0.3s ease;
}

.aqc-media-tile:hover .aqc-video-thumb {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 194, 255, 0.15));
    color: var(--aqua-secondary);
}

.aqc-video-thumb i {
    font-size: 64px;
    background: linear-gradient(135deg, var(--aqua-primary), var(--aqua-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.aqc-media-tile:hover .aqc-video-thumb i {
    transform: scale(1.2);
}

/* ----- LIGHTBOX MODERNO ----- */
.aqc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.98));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 30px;
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity 0.4s ease;
}

.aqc-lightbox.is-open {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.aqc-lightbox-inner {
    width: min(1300px, 100%);
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    animation: lightboxPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 102, 255, 0.2);
}

@keyframes lightboxPop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.aqc-lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    height: 100%;
    min-height: 300px;
}

.aqc-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.aqc-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(255, 51, 102, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.aqc-lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(255, 51, 102, 0.3));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

/* ----- UTILITY CON COLOR ----- */
.aqc-mini {
    margin: 10px 0 0 0;
    color: var(--aqua-primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    display: inline-block;
}

/* ----- RESPONSIVE VIVIDO ----- */
@media (max-width: 768px) {
    .aqc-empr-single {
        padding: 40px 0 50px;
    }
    
    .aqc-empr-title {
        font-size: 2.2rem;
    }
    
    .aqc-empr-hero-img {
        transform: none;
    }
    
    .aqc-empr-hero-img:hover {
        transform: scale(1.02);
    }
    
    .aqc-empr-card {
        padding: 24px;
    }
    
    .aqc-btn {
        min-width: 100%;
        justify-content: center;
    }
    
    .aqc-empr-cta {
        flex-direction: column;
    }
    
    .aqc-grid-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .aqc-empr-hero-img img {
        height: 280px;
    }
    
    .aqc-empr-title {
        font-size: 1.9rem;
    }
    
    .aqc-grid-gallery {
        grid-template-columns: 1fr;
    }
    
    .aqc-badge {
        padding: 8px 16px;
    }
}

/* ----- EFECTO BRILLO EN HOVER ----- */
.aqc-hover-glow {
    position: relative;
}

.aqc-hover-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.aqc-hover-glow:hover::after {
    opacity: 1;
}