        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            min-height: 100vh;
        }

        .wrapper {
            display: grid;
            grid-template-columns: 1fr 4fr;
            background-color: #f8f9fa;
            min-height: 100vh;
        }

        aside {
            padding: 2rem;
            background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
            color: white;
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(59, 130, 246, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .back-btn:hover {
            background: rgba(59, 130, 246, 0.4);
            transform: translateX(-5px);
            border-color: rgba(59, 130, 246, 0.5);
        }

        nav ul {
            list-style: none;
            padding: 0;
        }

        nav ul li {
            margin: 1rem 0;
        }

        .boton-menu {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            background: transparent;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .boton-menu:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateX(5px);
        }

        .boton-menu.active {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .texto-footer {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-mobile {
            display: none;
        }

        .close-menu,
        .open-menu {
            display: none;
        }

        main {
            background-color: #f8f9fa;
            margin: 2rem;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .titulo-principal {
            font-family: 'Playfair Display', serif;
            color: #1e293b;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .titulo-principal::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #2563eb);
            border-radius: 2px;
        }

        .contenedor-carrito {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .carrito-vacio {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 12px;
            color: #6b7280;
            font-size: 1.2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .carrito-productos {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .servicio-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .servicio-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .servicio-header {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 20px;
            margin-bottom: 15px;
        }

        .servicio-foto {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #e5e7eb;
        }

        .servicio-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 10px 0;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .info-item i {
            color: #3b82f6;
        }

        .precio {
            color: #059669 !important;
            font-weight: 600;
        }

        .fecha {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .mensaje-box {
            background: #f9fafb;
            padding: 12px;
            border-radius: 6px;
            border-left: 3px solid #3b82f6;
            margin-bottom: 15px;
        }

        .mensaje-box strong {
            color: #1f2937;
        }

        .mensaje-box p {
            margin: 5px 0 0 0;
            color: #4b5563;
            font-size: 0.9rem;
        }

        .servicio-footer {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            padding-top: 15px;
            border-top: 1px solid #e5e7eb;
        }

        .btn-solicitar {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .btn-solicitar:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.45);
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        }

        .btn-solicitar:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        .btn-eliminar {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .btn-eliminar:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.45);
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        }

        .btn-eliminar:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .carrito-acciones {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .carrito-acciones-vaciar {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
        }

        .carrito-acciones-vaciar:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .carrito-acciones-total {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
        }

        .carrito-acciones-total #total {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            min-width: 50px;
            text-align: center;
        }

        .disabled {
            display: none !important;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease;
        }

        .modal-icon {
            text-align: center;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: bounce 0.6s ease;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #1e293b;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.75rem;
        }

        .modal-text {
            font-size: 1rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .modal-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .modal-btn {
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-btn-confirm {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .modal-btn-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
        }

        .modal-btn-cancel {
            background: #f3f4f6;
            color: #4b5563;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .modal-btn-cancel:hover {
            background: #e5e7eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .toast {
            position: fixed;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 1.2rem 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            font-size: 0.95rem;
            font-weight: 500;
            z-index: 9999;
            animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        @media screen and (max-width: 850px) {
            .wrapper {
                grid-template-columns: 1fr;
            }

            aside {
                position: fixed;
                z-index: 9;
                left: -100%;
                width: 80%;
                max-width: 300px;
                transition: left 0.3s ease;
            }

            aside.aside-visible {
                left: 0;
            }

            .header-mobile {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 2rem;
                background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
                color: white;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }

            .header-mobile .logo {
                font-size: 1.5rem;
            }

            .open-menu,
            .close-menu {
                display: block;
                background: transparent;
                border: none;
                color: white;
                font-size: 2rem;
                cursor: pointer;
            }

            main {
                margin: 1rem;
                padding: 1rem;
            }

            .titulo-principal {
                font-size: 2rem;
            }

            .servicio-header {
                grid-template-columns: 80px 1fr;
                gap: 15px;
            }

            .servicio-foto {
                width: 80px;
                height: 80px;
            }

            .servicio-footer {
                flex-direction: column;
                gap: 0.75rem;
            }

            .btn-solicitar,
            .btn-eliminar {
                width: 100%;
                justify-content: center;
            }

            .toast {
                right: 15px;
                left: 15px;
                max-width: calc(100% - 30px);
            }

            .modal-buttons {
                flex-direction: column;
            }

            .modal-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* OVERLAY DEL MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CONTENEDOR PRINCIPAL DEL MODAL */
.modal-container {
    background: #f5f5f5;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ÍCONO DE CONFIRMACIÓN */
.modal-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-icon i {
    font-size: 40px;
    color: white;
}

/* TÍTULO */
.modal-title {
    color: #2d3748;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* PREGUNTA/DESCRIPCIÓN */
.modal-question {
    color: #718096;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* BOTONES */
.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
}

.btn-si {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-si:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-si:active {
    transform: translateY(0);
}

.btn-cancelar {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-cancelar:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-cancelar:active {
    transform: translateY(0);
}

.modal-btn i {
    font-size: 16px;
}

/* VARIANTES DE ÍCONO */
.modal-icon.accept {
    background: #28a745;
}

.modal-icon.delete {
    background: #dc3545;
}

.modal-icon.publish {
    background: #007bff;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .modal-container {
        max-width: 95%;
        padding: 35px 25px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-question {
        font-size: 15px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }
}

/* ANIMACIONES PARA TOAST */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}   

/* ===== ESTILOS MEJORADOS PARA NOTIFICACIONES ===== */

/* Contenedor principal del mensaje */
.service-message-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #4a6cf7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-message-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Efecto decorativo en la esquina */
.service-message-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 0 0 0 100%;
}

/* Título del mensaje */
.service-message-box h5 {
    color: #4a6cf7;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.service-message-box h5 i {
    font-size: 0.9rem;
    color: #6c63ff;
}

/* Contenido del mensaje */
.service-message-box p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-style: italic;
    position: relative;
}

/* Comillas decorativas */
.service-message-box p::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 2.5rem;
    color: rgba(74, 108, 247, 0.2);
    font-family: serif;
    font-weight: bold;
}

.service-message-box p::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 2.5rem;
    color: rgba(74, 108, 247, 0.2);
    font-family: serif;
    font-weight: bold;
}

/* Badge para identificar el mensaje */
.message-badge {
    display: inline-block;
    background: #4a6cf7;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(74, 108, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 108, 247, 0); }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .service-message-box {
        padding: 15px;
    }
    
    .service-message-box p {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* ===== MEJORAS AL MODAL DE NOTIFICACIÓN ===== */
.notification-detail-content {
    max-width: 600px;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Encabezado mejorado */
.notification-detail-header {
    background: linear-gradient(135deg, #4a6cf7 0%, #6c63ff 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.notification-detail-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Secciones de información */
.service-info-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.service-info-section:hover {
    border-color: #4a6cf7;
}

.service-info-title {
    color: #4a6cf7;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.service-info-item:last-child {
    border-bottom: none;
}

.service-info-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-info-value {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

/* Botones de acción mejorados */
.service-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.service-action-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-action-btn i {
    font-size: 1rem;
}

.service-action-btn.call {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.service-action-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.service-action-btn.accept {
    background: linear-gradient(135deg, #4a6cf7 0%, #6c63ff 100%);
    color: white;
}

.service-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-action-btn:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .service-actions {
        grid-template-columns: 1fr;
    }
    
    .service-action-btn {
        padding: 15px;
    }
}

/* Añade estos estilos también */

/* Badges decorativos */
.customer-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Números de teléfono */
.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #2c3e50;
}

.phone-number i {
    color: #28a745;
}

/* Rango de precios */
.price-range {
    color: #e74c3c;
    font-weight: bold;
}

.price-range i {
    color: #f39c12;
}

/* Alertas informativas */
.info-alert {
    background: #e8f4fd;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #3498db;
}

.info-alert i {
    color: #3498db;
    font-size: 1.2rem;
    margin-right: 10px;
}

.info-alert p {
    margin: 8px 0;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Pie de mensaje */
.message-footer {
    text-align: right;
    margin-top: 10px;
    color: #666;
    font-size: 0.85rem;
}

.message-footer i {
    margin-right: 5px;
}

/* Efecto de resaltado para servicios importantes */
.service-type {
    color: #2c3e50;
    position: relative;
    padding-left: 5px;
}

.service-type::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #4a6cf7;
    border-radius: 3px;
}

/* Animación de entrada para el mensaje */
@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-message-box {
    animation: messageFadeIn 0.5s ease-out;
}