        /* Sección Contacto */
        .seccion-contacto {
            padding: 80px 0;
            background-color: #E8F1F0;
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .formulario-contacto {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .formulario-contacto h3 {
            color: #3D9EB9;
            margin-bottom: 20px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2E2E2E;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #E8F1F0;
            border-radius: 5px;
            font-family: inherit;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #3D9EB9;
        }

        ::placeholder {
            font-family: 'Arial', sans-serif;
            font-size: 14px;
            color: #999;
            font-style: italic;
   
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-whatsapp {
            background-color: #25D366;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-whatsapp:hover {
            background-color: #1DA851;
        }

        .whatsapp-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .whatsapp-icon {
            background-color: #88FAC0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .whatsapp-icon i {
            font-size: 40px;
            color: white;
        }

        .horario-atencion {
            margin-top: 20px;
            color: #2E2E2E;
            font-size: 14px;
        }

        .error-mensaje {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .success-message {
            background-color: #88FAC0;
            color: #2E2E2E;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeIn 0.5s;
        }

        .success-message i {
            font-size: 1.5rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

             /* Responsive */
        @media (max-width: 768px) {
            .contacto-grid {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-direction: column;
            }
        }