/* Claim Ownership System - Estilos adicionales sin sobrescribir existentes */

/* Botón de Reclamar Propiedad en Hero */
.glass-btn-claim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.glass-btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.glass-btn-claim svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Botón "Propietario verificado" (yes_owner): solo informativo, no clicable */
.glass-btn-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: default;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.glass-btn-verified svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}
.glass-btn-verified-t3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: default;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.glass-btn-verified-t3 svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Banner Style (backup - no usado actualmente) */
.claim-ownership-banner {
    background: linear-gradient(135deg, rgba(27, 93, 99, 0.95), rgba(22, 78, 84, 0.95));
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(27, 93, 99, 0.2);
    position: relative;
    overflow: hidden;
}

.claim-ownership-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.claim-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.claim-banner-content svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    stroke: #fbbf24;
}

.claim-text {
    flex: 1;
}

.claim-text h4 {
    margin: 0 0 4px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.claim-text p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
}

.claim-btn {
    padding: 14px 28px;
    background: white;
    color: #1B5D63;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    background: #fbbf24;
    color: #1f2937;
}

/* Popup Reclamar: contenedor del contenido cargado por AJAX */
#claim-popup-elementor .claim-popup-inner {
    min-height: 200px;
    padding: 24px;
}
#claim-popup-elementor .claim-popup-loading {
    margin: 0;
    color: #6b7280;
    text-align: center;
    padding: 40px 20px;
}
#claim-popup-elementor {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

/* Popup Reclamar: registro por steps */
.claim-popup-by-steps .claim-step-title {
    margin: 0 0 12px 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
}
.claim-popup-by-steps .claim-step-desc {
    margin: 0 0 24px 0;
    color: #6b7280;
    line-height: 1.5;
    font-size: 1rem;
}
.claim-popup-by-steps .claim-step-begin {
    width: 100%;
    padding: 14px 24px;
    font-size: 1.1rem;
}
.claim-popup-by-steps .claim-form-group {
    margin-bottom: 18px;
}
.claim-popup-by-steps .claim-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}
.claim-popup-by-steps .claim-form-group .required {
    color: #dc2626;
}
.claim-popup-by-steps .claim-form-group input,
.claim-popup-by-steps .claim-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}
.claim-popup-by-steps .claim-form-group input:focus,
.claim-popup-by-steps .claim-form-group textarea:focus {
    outline: none;
    border-color: #1B5D63;
}
.claim-popup-by-steps .claim-form-notice {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
}
.claim-popup-by-steps .claim-form-notice.success {
    background: #d1fae5;
    color: #065f46;
}
.claim-popup-by-steps .claim-form-notice.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Modal Styles */
.glass-popup-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.glass-popup-header {
    padding: 24px;
    border-bottom: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.glass-popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 700;
}

.glass-popup-body {
    padding: 24px;
}

.claim-info {
    background: linear-gradient(135deg, #f0f9fa, #e6f7f9);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    color: #1B5D63;
    font-size: 1.05rem;
    border-left: 4px solid #1B5D63;
}

.glass-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s;
    font-family: inherit;
}

.glass-input:focus {
    outline: none;
    border-color: #1B5D63;
    box-shadow: 0 0 0 4px rgba(27, 93, 99, 0.1);
}

.glass-input::placeholder {
    color: #9ca3af;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 1.05rem;
}




@media (max-width: 768px) {
    .claim-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .claim-btn {
        width: 100%;
    }
    
    .claim-text h4 {
        font-size: 1.2rem;
    }
    
    .claim-text p {
        font-size: 0.95rem;
    }
}
