/* ===== ESTILOS ESPECÍFICOS PARA CONTACTO ===== */
.lp-contact-form {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--box-shadow);
}

.lp-contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.lp-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.lp-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lp-contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-info-card .lp-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info-card .lp-value-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.contact-info-card .lp-value-title {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info-card {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info-card .lp-value-desc:last-child {
    margin-bottom: 0;
}

/* Estilos para checkbox de políticas */
.lp-contact-form .form-check {
    margin-bottom: 1rem;
}

.lp-contact-form .form-check-input {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.lp-contact-form .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.lp-contact-form .form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.lp-contact-form .form-check-label a {
    color: var(--gold);
    text-decoration: underline;
}

.lp-contact-form .form-check-label a:hover {
    color: #e0c47a;
}

.lp-contact-form .form-check-input.is-invalid {
    border-color: #dc3545;
}

.lp-contact-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
}

/* Alertas */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert i {
    font-size: 1.2rem;
}

/* Botón de WhatsApp específico */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-whatsapp:hover::after {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-info-card .lp-value-icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-card .lp-value-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .lp-contact-form {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }
}

.contact-info-card,
.parrafo-per {
    color: rgb(136, 136, 136) !important;
    text-align: center !important;
}