/* BASE */
#dpp-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 9998;
}

#dpp-popup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    z-index: 9999;
    max-width: 95vw;
    max-height: 95vh;
    overflow: hidden;
}

/* ESCRITORIO - SIN PARTE NEGRA NUNCA */
.dpp-desktop {
    width: 900px;
    max-width: 95vw;
}
.dpp-desktop .dpp-content {
    display: flex;
    min-height: 520px;
}
.dpp-desktop .dpp-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: transparent !important; /* ← Esto elimina el parche negro */
}
.dpp-desktop .dpp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.dpp-desktop .dpp-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.dpp-desktop .dpp-text h2 { font-size: 44px; margin: 0 0 20px; font-weight: 800; }
.dpp-desktop .dpp-subtitle { font-size: 19px; line-height: 1.7; margin-bottom: 35px; max-width: 90%; }

/* MÓVIL */
.dpp-mobile { 
    width: 92vw; 
    max-height: 92vh; 
    display: flex; 
    flex-direction: column;
}
.dpp-mobile .dpp-image { 
    height: 340px; 
    position: relative; 
    overflow: hidden; 
    background: #000; 
}
.dpp-mobile .dpp-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
}
.dpp-mobile .dpp-text { 
    padding: 50px 30px; 
    text-align: center; 
}
.dpp-mobile .dpp-text h2 { font-size: 32px; margin: 0 0 18px; }
.dpp-mobile .dpp-subtitle { font-size: 18px; line-height: 1.6; margin-bottom: 30px; }

/* COMÚN */
.dpp-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 48px;
    color: #aaa;
    cursor: pointer;
    z-index: 100;
    font-weight: 300;
}
.dpp-close:hover { color: #e91e63; }

.dpp-text input[type=text],
.dpp-text input[type=email] {
    width: 100%;
    max-width: 420px;
    margin: 12px 0;
    padding: 16px 20px;
    border: 2px solid #e91e63;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
}
.dpp-text button {
    background: #e91e63;
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    min-width: 240px;
    margin-top: 25px;
}
.dpp-overlay {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    top: 10%;
    left: 80%;
    width: 200px;
    max-width: 85%;
}
.dpp-mobile .dpp-overlay {
    top: 8% !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    max-width: 44vw !important;
} 