#popup-reni * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.steps {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.steps h3 {
  color: #d32f2f;
  font-size: 18px;
  margin-bottom: 20px!important;
  text-align: center;
}

.contact-item p {
  color: #2e7d32;
  font-size: 15px;
  margin: 0;
}

.contact-box h3 {
  color: #d32f2f;
  text-align: center;
  margin-bottom: 18px!important;
  font-size: 18px;
}

.recommendation {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
}

.cta-section {
  text-align: center;
  margin-top: 28px!important;
}

.footer-note {
  margin-top: 28px!important;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

#popup-reni {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

#popup-reni .popup-overlay {
    background: white;
    border-radius: 16px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popup-slide-in 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes popup-slide-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER */
#popup-reni .popup-header {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    padding: 28px 24px;
    text-align: center;
}

#popup-reni .icon-warning {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 36px;
    animation: popup-pulse 2s infinite;
}

@keyframes popup-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* BODY */
#popup-reni .popup-body {
    padding: 32px 28px;
    overflow-y: auto;
    flex: 1;
}

#popup-reni .alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 4px;
	color:#856404;
}

#popup-reni .steps {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

#popup-reni .step {
    display: flex;
    align-items: start;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd;
}

#popup-reni .step:last-child { border-bottom: none; }

#popup-reni .step-number {
    background: #d32f2f;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
}

#popup-reni .contact-box {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    margin-bottom: 24px;
}

/* BOTONES */
#popup-reni .btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    max-width: 400px;
}

#popup-reni .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

#popup-reni .btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 14px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

#popup-reni .btn-secondary:hover {
    border-color: #999;
    color: #333;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #popup-reni {
        padding: 10px;
    }

    #popup-reni .popup-overlay {
        max-width: 100%;
        border-radius: 12px;
    }

    #popup-reni .popup-body {
        padding: 20px;
    }

    #popup-reni .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
}