/* Value Property Section */
.value-property {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.value-property::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imagenes/608e1c1f-bba3-4f16-b603-2bc99ca5153b.jpg') no-repeat center center / cover;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none; /* Para que no interfiera con interacciones del contenido */
}

.value-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-property h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.value-property h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.value-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    line-height: 1.6;
}

.value-property .btn {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: none;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.value-property .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.value-property .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.value-property .btn:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .value-property {
        padding: 70px 0;
    }
    
    .value-property h2 {
        font-size: 2rem;
    }
    
    .value-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .value-property h2 {
        font-size: 1.8rem;
    }
    
    .value-property .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
