/* assets/css/launch-geo.css */

/* Banner Flotante (Desktop) */
.geo-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.geo-banner.active {
    transform: translateY(0);
}

.geo-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geo-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-1, #d4af37);
    display: flex;
    align-items: center;
    gap: 6px;
}

.geo-tag::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.geo-banner h4 {
    margin: 0;
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.btn-geo {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-geo:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Resaltado de Menú */
.geo-highlight {
    position: relative;
}

.geo-highlight::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent-1, #d4af37);
    border-radius: 50%;
    animation: eg-pulse 2s infinite;
}

@keyframes eg-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Mobile Section */
.geo-mobile-card {
    margin: 20px;
    padding: 25px;
    border-radius: 12px;
    background: var(--color-glass, rgba(255,255,255,0.7));
    border: 1px solid var(--color-glass-border);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 768px) {
    .geo-banner { display: none; }
}

/* Video Bubble Styles */
.video-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 998;
    cursor: pointer;
    border: 4px solid #D4AF37;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    opacity: 0;
    transform: scale(0.5) translateY(100px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000;
}

/* Aura Effect */
.video-bubble::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    animation: aura-pulse 2s infinite;
    z-index: -1;
}

@keyframes aura-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-bubble.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.video-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212,175,55,0.5);
    border-color: #fde047;
}

.video-bubble video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}

.video-bubble-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    background: #000;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .video-bubble {
        bottom: 20px;
        left: 20px;
        width: 80px;
        height: 80px;
    }
}
