
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: none;
    backdrop-filter: blur(5px);
}

.popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-content {
    text-align: center;
    color: white;
    position: relative;
}

/* Diseño Rocket */
.design-rocket {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.design-rocket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width=\"20\" height=\"20\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cdefs%3E%3Cpattern id=\"stars\" x=\"0\" y=\"0\" width=\"20\" height=\"20\" patternUnits=\"userSpaceOnUse\"%3E%3Ccircle cx=\"2\" cy=\"2\" r=\"1\" fill=\"%23ffffff\" opacity=\"0.1\"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width=\"100%25\" height=\"100%25\" fill=\"url(%23stars)\"/%3E%3C/svg%3E");
}

/* Diseño Premium */
.design-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Diseño Target */
.design-target {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Diseño Lightning */
.design-lightning {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Diseño Fire */
.design-fire {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.popup-header {
    padding: 40px 30px 20px;
    position: relative;
}

.popup-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.popup-body {
    padding: 0 30px 30px;
}

.popup-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.popup-button {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .popup-container {
        width: 95%;
        margin: 20px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-subtitle {
        font-size: 16px;
    }
    
    .popup-description {
        font-size: 14px;
    }
    
    .popup-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}
