/* Estilos para el frontend del plugin Directorio de Profesionales */

/* Variables CSS para consistencia */
:root {
    --dp-primary: #69afae;
    --dp-primary-dark: #89a7a5;
    --dp-secondary: #a9b7c7;
    --dp-success: #69afae;
    --dp-warning: #d9a78b;
    --dp-danger: #ef8378;
    --dp-accent-1: #f3eed8;
    --dp-accent-2: #e9dfd6;
    --dp-accent-3: #d9cdb8;
    --dp-accent-4: #bfa595;
    --dp-accent-5: #bf8273;
    --dp-accent-6: #a66a76;
    --dp-accent-7: #ecebe7;
    --dp-gray-50: #ecebe7;
    --dp-gray-100: #f3eed8;
    --dp-gray-200: #e9dfd6;
    --dp-gray-300: #d9cdb8;
    --dp-gray-400: #bfa595;
    --dp-gray-500: #a66a76;
    --dp-gray-600: #bf8273;
    --dp-gray-700: #a66a76;
    --dp-gray-800: #bf8273;
    --dp-gray-900: #a66a76;
    --dp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --dp-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --dp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --dp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --dp-radius: 0.5rem;
    --dp-radius-lg: 0.75rem;
    --dp-radius-xl: 1rem;
}

/* Estilos mejorados para página de error 404 */
.dp-error-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dp-gray-50) 0%, var(--dp-accent-1) 50%, var(--dp-gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.dp-error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2369afae" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2369afae" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2369afae" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%2369afae" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%2369afae" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.dp-error-page .dp-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--dp-radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--dp-gray-200);
    backdrop-filter: blur(10px);
}

.dp-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dp-error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(105, 175, 174, 0.3);
    animation: dp-pulse 2s infinite;
}

.dp-error-icon svg {
    width: 60px;
    height: 60px;
}

@keyframes dp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(105, 175, 174, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(105, 175, 174, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(105, 175, 174, 0.3);
    }
}

.dp-error-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dp-gray-900);
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dp-error-description {
    font-size: 1.25rem;
    color: var(--dp-gray-600);
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
}

.dp-error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.dp-btn-primary,
.dp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--dp-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.dp-btn-primary {
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(105, 175, 174, 0.3);
}

.dp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(105, 175, 174, 0.4);
    text-decoration: none;
    color: white;
}

.dp-btn-secondary {
    background: white;
    color: var(--dp-gray-700);
    border: 2px solid var(--dp-gray-300);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dp-btn-secondary:hover {
    background: var(--dp-gray-50);
    border-color: var(--dp-primary);
    color: var(--dp-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.dp-btn-primary svg,
.dp-btn-secondary svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive para página de error */
@media (max-width: 768px) {
    .dp-error-page .dp-container {
        margin: 1rem;
        padding: 3rem 2rem;
    }

    .dp-error-title {
        font-size: 2.5rem;
    }

    .dp-error-description {
        font-size: 1.125rem;
    }

    .dp-error-actions {
        flex-direction: column;
        align-items: center;
    }

    .dp-btn-primary,
    .dp-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .dp-error-icon {
        width: 100px;
        height: 100px;
    }

    .dp-error-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .dp-error-page .dp-container {
        padding: 2rem 1.5rem;
    }

    .dp-error-title {
        font-size: 2rem;
    }

    .dp-error-description {
        font-size: 1rem;
    }

    .dp-error-icon {
        width: 80px;
        height: 80px;
    }

    .dp-error-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Textarea de descripción del servicio - ancho completo */
#descripcion_servicio,
textarea.dp-descripcion-servicio {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
}

/* Formulario de registro */
.directorio-profesionales-formulario-publico,
.dp-formulario-registro {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.directorio-profesionales-formulario-publico h2,
.dp-formulario-registro h2 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
}

.directorio-profesionales-formulario-publico p,
.dp-formulario-registro p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Información del formulario */
.form-info {
    background: #e8f4fd;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-info p {
    margin: 0;
    color: #2c3e50;
    font-size: 14px;
}

/* Secciones del formulario */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #0073aa;
}

/* Filas del formulario */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group.full-width {
    flex: 100%;
}

/* Labels */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 12px;
}

.form-group .required {
    color: #e74c3c;
    font-weight: bold;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Archivos */
.form-group input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 2px dashed #bdc3c7;
    border-radius: 4px;
    background: #f8f9fa;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

/* Contenedores de checkboxes */
.checkboxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e1e5e9;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

/* Contador de selección */
.selection-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #e8f4fd;
    border-radius: 4px;
    font-size: 14px;
    color: #2c3e50;
}

.clear-selection-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.clear-selection-btn:hover {
    background: #5a6268;
}

/* Mensaje de carga */
.loading-message {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Botones */
.btn-enviar {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-enviar:hover {
    background: #005a87;
}

.btn-enviar:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

/* Acciones del formulario */
.form-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

/* Mensajes */
.mensaje-exito,
.mensaje-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.mensaje-exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensaje-exito h3 {
    margin: 0 0 10px 0;
    color: #155724;
}

.mensaje-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {

    .directorio-profesionales-formulario-publico,
    .dp-formulario-registro {
        padding: 15px;
        margin: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .checkboxes-container {
        flex-direction: column;
    }

    .checkbox-item {
        min-width: auto;
    }
}

.dp-form-section {
    margin-bottom: 30px;
}

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

.dp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.dp-form-group input,
.dp-form-group select,
.dp-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.dp-form-group input:focus,
.dp-form-group select:focus,
.dp-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.dp-form-group .required {
    color: #e74c3c;
}

.dp-form-row {
    display: flex;
    gap: 20px;
}

.dp-form-row .dp-form-group {
    flex: 1;
}

/* Botones */
.dp-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dp-btn:hover {
    background: #2980b9;
}

.dp-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.dp-btn-primary {
    background: #3498db;
}

.dp-btn-primary:hover {
    background: #2980b9;
}

/* Mensajes */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Campos ocultos */
.dp-hidden {
    display: none !important;
}

/* Checkboxes con alineación específica a la izquierda */
.check_alineacion label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
}

.check_alineacion input[type="checkbox"] {
    margin: 0 !important;
    flex-shrink: 0;
    width: auto !important;
}

/* Radios */
.dp-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dp-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dp-radio-item input {
    width: auto;
    margin: 0;
}

/* Subida de archivos */
.dp-file-upload {
    border: 2px dashed #bdc3c7;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.dp-file-upload:hover {
    border-color: #3498db;
}

.dp-file-upload input[type="file"] {
    width: auto;
    border: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dp-formulario-registro {
        padding: 15px;
        margin: 10px;
    }

    .dp-form-row {
        flex-direction: column;
        gap: 0;
    }

    .dp-checkbox-group,
    .dp-radio-group {
        flex-direction: column;
    }
}

/* Loading spinner */
.dp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: dp-spin 1s linear infinite;
}

@keyframes dp-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Estilos específicos para el formulario público */
.directorio-profesionales-formulario-publico .form-group {
    margin-bottom: 15px;
}

.directorio-profesionales-formulario-publico .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.directorio-profesionales-formulario-publico .form-group input,
.directorio-profesionales-formulario-publico .form-group select,
.directorio-profesionales-formulario-publico .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.directorio-profesionales-formulario-publico .form-group input:focus,
.directorio-profesionales-formulario-publico .form-group select:focus,
.directorio-profesionales-formulario-publico .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.directorio-profesionales-formulario-publico .form-group .required {
    color: #e74c3c;
    font-weight: bold;
}

.directorio-profesionales-formulario-publico .form-row {
    display: flex;
    gap: 20px;
}

.directorio-profesionales-formulario-publico .form-row .form-group {
    flex: 1;
}

/* Botón de envío */
.directorio-profesionales-formulario-publico .btn-enviar {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

.directorio-profesionales-formulario-publico .btn-enviar:hover {
    background: #2980b9;
}

.directorio-profesionales-formulario-publico .btn-enviar:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

/* Campos ocultos */
.directorio-profesionales-formulario-publico .dp-hidden {
    display: none !important;
}

/* Responsive para formulario público */
@media (max-width: 768px) {
    .directorio-profesionales-formulario-publico {
        padding: 15px;
        margin: 10px;
    }

    .directorio-profesionales-formulario-publico .form-section {
        padding: 15px;
    }

    .directorio-profesionales-formulario-publico .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Estilos para ocultar número de teléfono con efecto gaussiano */
.dp-hidden-phone {
    position: relative;
    display: inline-block;
    color: transparent !important;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

/* Animación del efecto gaussiano */
@keyframes dp-gaussian-shimmer {
    0% {
        background-position: -200% 0;
        filter: blur(2px);
    }

    50% {
        background-position: 200% 0;
        filter: blur(1px);
    }

    100% {
        background-position: -200% 0;
        filter: blur(2px);
    }
}

/* Estilos para el botón de contacto con teléfono */
.dp-contact-btn.dp-btn-phone {
    position: relative;
    overflow: hidden;
}

.dp-contact-btn.dp-btn-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dp-contact-btn.dp-btn-phone:hover::after {
    transform: translateX(100%);
}

/* Indicador visual de contenido oculto */
.dp-contact-btn.dp-btn-phone small.dp-hidden-phone::before {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Estilos para ocultar email con efecto gaussiano */
.dp-hidden-email {
    position: relative;
    display: inline-block;
    color: transparent !important;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

/* Estilos para el botón de contacto con email */
.dp-contact-btn.dp-btn-email {
    position: relative;
    overflow: hidden;
}

.dp-contact-btn.dp-btn-email::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dp-contact-btn.dp-btn-email:hover::after {
    transform: translateX(100%);
}

/* Indicador visual de contenido oculto para email */
.dp-contact-btn.dp-btn-email small.dp-hidden-email::before {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Estilos para el botón de contacto con WhatsApp */
.dp-contact-btn.dp-btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.dp-contact-btn.dp-btn-whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.dp-contact-btn.dp-btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dp-contact-btn.dp-btn-whatsapp:hover::after {
    transform: translateX(100%);
}

/* Iconos SVG para botones de contacto */
.dp-icon-phone {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dp-icon-whatsapp {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dp-icon-email {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Indicador visual de contenido oculto para WhatsApp */
.dp-contact-btn.dp-btn-whatsapp small.dp-hidden-phone::before {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
}